From 832f17b0dc839551e20d2548bd784c6def4e149d Mon Sep 17 00:00:00 2001 From: Tom Date: Sat, 15 Aug 2026 14:38:43 -0700 Subject: [PATCH] chore: remove voso key from config (#927) Signed-off-by: IAmTomahawkx --- crates/core/config/Revolt.toml | 2 -- crates/core/config/src/lib.rs | 1 - rust-toolchain.toml | 3 ++- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/crates/core/config/Revolt.toml b/crates/core/config/Revolt.toml index 6c0ec33c..7bb8aab5 100644 --- a/crates/core/config/Revolt.toml +++ b/crates/core/config/Revolt.toml @@ -62,8 +62,6 @@ expire_account_deletion = 86400 # 3600 * 24 [api.security] # Authifier Shield API key authifier_shield_key = "" -# Legacy voice server management token -voso_legacy_token = "" # Whether services are behind the Cloudflare network trust_cloudflare = false # easypwned endpoint diff --git a/crates/core/config/src/lib.rs b/crates/core/config/src/lib.rs index 1c354769..bcb5743c 100644 --- a/crates/core/config/src/lib.rs +++ b/crates/core/config/src/lib.rs @@ -223,7 +223,6 @@ pub struct ApiSecurityShield { #[derive(Deserialize, Debug, Clone)] pub struct ApiSecurity { pub shield: ApiSecurityShield, - pub voso_legacy_token: String, pub captcha: ApiSecurityCaptcha, pub trust_cloudflare: bool, pub easypwned: String, diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ed196614..30833908 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,3 @@ [toolchain] -channel = "1.92.0" \ No newline at end of file +channel = "1.92.0" +components = ["rust-analyzer"] \ No newline at end of file