From 3515503203220b837f513d22cbb0aba6eec2b180 Mon Sep 17 00:00:00 2001 From: 21pages Date: Fri, 14 Feb 2025 13:12:29 +0800 Subject: [PATCH] option 'preset-device-group-name' Signed-off-by: 21pages --- src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.rs b/src/config.rs index 789f2ec..1f3ff3b 100644 --- a/src/config.rs +++ b/src/config.rs @@ -2235,6 +2235,7 @@ pub mod keys { // buildin options pub const OPTION_DISPLAY_NAME: &str = "display-name"; pub const OPTION_DISABLE_UDP: &str = "disable-udp"; + pub const OPTION_PRESET_DEVICE_GROUP_NAME: &str = "preset-device-group-name"; pub const OPTION_PRESET_USERNAME: &str = "preset-user-name"; pub const OPTION_PRESET_STRATEGY_NAME: &str = "preset-strategy-name"; pub const OPTION_REMOVE_PRESET_PASSWORD_WARNING: &str = "remove-preset-password-warning"; @@ -2385,6 +2386,7 @@ pub mod keys { pub const KEYS_BUILDIN_SETTINGS: &[&str] = &[ OPTION_DISPLAY_NAME, OPTION_DISABLE_UDP, + OPTION_PRESET_DEVICE_GROUP_NAME, OPTION_PRESET_USERNAME, OPTION_PRESET_STRATEGY_NAME, OPTION_REMOVE_PRESET_PASSWORD_WARNING,