feat(system): Builder API Key 等配置前端显示完整值

- 后端 SystemConfigService 返回解密后的完整 builderApiKey/Secret/Passphrase,不再脱敏
- 移除未使用的 maskSensitiveValue 方法
- 更新 DTO 与前端类型注释为「完整显示」

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
WrBug
2026-02-16 01:47:52 +08:00
co-authored by Cursor
parent 08e1219f77
commit c38529546f
3 changed files with 10 additions and 23 deletions
+3 -3
View File
@@ -932,9 +932,9 @@ export interface SystemConfig {
builderApiKeyConfigured: boolean
builderSecretConfigured: boolean
builderPassphraseConfigured: boolean
builderApiKeyDisplay?: string // Builder API Key 显示值(部分显示
builderSecretDisplay?: string // Builder Secret 显示值(部分显示
builderPassphraseDisplay?: string // Builder Passphrase 显示值(部分显示
builderApiKeyDisplay?: string // Builder API Key 显示值(完整
builderSecretDisplay?: string // Builder Secret 显示值(完整
builderPassphraseDisplay?: string // Builder Passphrase 显示值(完整
autoRedeemEnabled: boolean // 自动赎回(系统级别配置,默认开启)
}