chore: auto fix 存储标记,确保fix只运行一次

This commit is contained in:
xiaojunnuo
2026-05-16 02:23:21 +08:00
parent c63745d1ba
commit c3baaf3ac7
3 changed files with 85 additions and 6 deletions
@@ -253,6 +253,14 @@ export class SysSuiteSetting extends BaseSettings {
intro?: string;
}
export class SysAutoFixSetting extends BaseSettings {
static __title__ = '自动修复记录';
static __key__ = 'sys.auto.fix';
static __access__ = 'private';
fixed: Record<string, boolean> = {};
}
export type SiteHidden = {
enabled: boolean;