This commit is contained in:
xiaojunnuo
2024-11-25 00:53:36 +08:00
parent c96fcb7afc
commit dd2b0a1595
13 changed files with 49 additions and 52 deletions

View File

@@ -24,11 +24,18 @@ export type PlusInfo = {
isComm?: boolean;
};
export type SysPublicSetting = {
registerEnabled: boolean;
managerOtherUserPipeline: boolean;
registerEnabled?: boolean;
limitUserPipelineCount?: number;
managerOtherUserPipeline?: boolean;
icpNo?: string;
};
export type SysPrivateSetting = {
httpProxy?: string;
httpsProxy?: string;
dnsResultOrder?: string;
commonCnameEnabled?: boolean;
};
export type SysInstallInfo = {
siteId: string;
};