feat(settings): link feature toggles to their config pages

Channel Monitor card now links to 渠道管理 > 渠道监控 and the Available
Channels card links to 渠道管理 > 渠道定价 so admins know where to go
after flipping the switch.
This commit is contained in:
erio
2026-04-21 21:59:23 +08:00
parent 6cd7c60549
commit 1f81b77911
4 changed files with 68 additions and 0 deletions

View File

@@ -473,6 +473,9 @@ export interface SystemSettings {
// Channel Monitor feature switch
channel_monitor_enabled: boolean;
channel_monitor_default_interval_seconds: number;
// Available Channels feature switch
available_channels_enabled: boolean;
}
export interface UpdateSettingsRequest {
@@ -626,6 +629,9 @@ export interface UpdateSettingsRequest {
// Channel Monitor feature switch
channel_monitor_enabled?: boolean;
channel_monitor_default_interval_seconds?: number;
// Available Channels feature switch
available_channels_enabled?: boolean;
}
/**