From c81144cd14ff7c09141f23a1004ad0b216fb153c Mon Sep 17 00:00:00 2001 From: Nutomic Date: Wed, 8 Jan 2025 21:48:29 +0000 Subject: [PATCH] Remove unused params on CreateSite/EditSite (#5311) --- crates/api_common/src/site.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/api_common/src/site.rs b/crates/api_common/src/site.rs index ef3aa4f088..eeddb34ccf 100644 --- a/crates/api_common/src/site.rs +++ b/crates/api_common/src/site.rs @@ -259,8 +259,6 @@ pub struct CreateSite { #[cfg_attr(feature = "full", ts(optional))] pub federation_enabled: Option, #[cfg_attr(feature = "full", ts(optional))] - pub federation_debug: Option, - #[cfg_attr(feature = "full", ts(optional))] pub captcha_enabled: Option, #[cfg_attr(feature = "full", ts(optional))] pub captcha_difficulty: Option, @@ -378,9 +376,6 @@ pub struct EditSite { /// Whether to enable federation. #[cfg_attr(feature = "full", ts(optional))] pub federation_enabled: Option, - /// Enables federation debugging. - #[cfg_attr(feature = "full", ts(optional))] - pub federation_debug: Option, /// Whether to enable captchas for signups. #[cfg_attr(feature = "full", ts(optional))] pub captcha_enabled: Option,