X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fsource%2Flocal_site.rs;h=4ae68ec1d39477597a78519715299253a24be9c1;hb=872c60a01358e1469926c1ffcb69f49f9666a392;hp=79cd3852f00f948b77382eb2a972d44113628255;hpb=65041a20bbcdf82ab5f53364460155c7991e5861;p=lemmy.git diff --git a/crates/db_schema/src/source/local_site.rs b/crates/db_schema/src/source/local_site.rs index 79cd3852..4ae68ec1 100644 --- a/crates/db_schema/src/source/local_site.rs +++ b/crates/db_schema/src/source/local_site.rs @@ -29,8 +29,6 @@ pub struct LocalSite { pub actor_name_max_length: i32, pub federation_enabled: bool, pub federation_debug: bool, - pub federation_strict_allowlist: bool, - pub federation_http_fetch_retry_limit: i32, pub federation_worker_count: i32, pub captcha_enabled: bool, pub captcha_difficulty: String, @@ -63,8 +61,6 @@ pub struct LocalSiteInsertForm { pub actor_name_max_length: Option, pub federation_enabled: Option, pub federation_debug: Option, - pub federation_strict_allowlist: Option, - pub federation_http_fetch_retry_limit: Option, pub federation_worker_count: Option, pub captcha_enabled: Option, pub captcha_difficulty: Option, @@ -93,8 +89,6 @@ pub struct LocalSiteUpdateForm { pub actor_name_max_length: Option, pub federation_enabled: Option, pub federation_debug: Option, - pub federation_strict_allowlist: Option, - pub federation_http_fetch_retry_limit: Option, pub federation_worker_count: Option, pub captcha_enabled: Option, pub captcha_difficulty: Option,