feat(ConfigGroup, SystemConfig): add support for secret fields in configuration forms

This commit is contained in:
shiyu
2025-05-25 12:08:15 +08:00
parent 6866580dce
commit a5c7959c4a
3 changed files with 83 additions and 44 deletions

View File

@@ -195,6 +195,7 @@ export interface ConfigResponse {
key: string;
value: string;
description: string;
isSecret: boolean;
createdAt: Date;
updatedAt?: Date;
}