certd/packages/ui/certd-server/src/modules/system/service/models.ts

41 lines
1.0 KiB
TypeScript
Raw Normal View History

2024-07-14 16:30:33 +00:00
export class BaseSettings {
static __key__: string;
static __title__: string;
static __access__ = 'private';
static getCacheKey() {
return 'settings.' + this.__key__;
}
}
export class SysPublicSettings extends BaseSettings {
static __key__ = 'sys.public';
static __title__ = '系统公共设置';
static __access__ = 'public';
registerEnabled = false;
managerOtherUserPipeline = false;
2024-09-20 07:15:24 +00:00
// triggerOnStartup = false;
2024-07-14 16:30:33 +00:00
}
export class SysPrivateSettings extends BaseSettings {
static __title__ = '系统私有设置';
static __access__ = 'private';
static __key__ = 'sys.private';
jwtKey?: string;
encryptSecret?: string;
2024-07-14 16:30:33 +00:00
}
export class SysInstallInfo extends BaseSettings {
static __title__ = '系统安装信息';
static __key__ = 'sys.install';
static __access__ = 'private';
installTime: number;
siteId?: string;
}
2024-08-02 14:58:29 +00:00
export class SysLicenseInfo extends BaseSettings {
static __title__ = '授权许可信息';
static __key__ = 'sys.license';
static __access__ = 'private';
license?: string;
2024-08-02 14:58:29 +00:00
}