mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-25 08:00:56 +00:00
38 lines
842 B
Go
38 lines
842 B
Go
export namespace Setting {
|
|
export interface SettingInfo {
|
|
userName: string;
|
|
password: string;
|
|
email: string;
|
|
|
|
sessionTimeout: string;
|
|
localTime: string;
|
|
|
|
panelName: string;
|
|
theme: string;
|
|
language: string;
|
|
|
|
serverPort: string;
|
|
securityEntrance: string;
|
|
passwordTimeOut: string;
|
|
complexityVerification: string;
|
|
mfaStatus: string;
|
|
|
|
monitorStatus: string;
|
|
monitorStoreDays: string;
|
|
|
|
messageType: string;
|
|
emailVars: string;
|
|
weChatVars: string;
|
|
dingVars: string;
|
|
}
|
|
export interface SettingUpdate {
|
|
key: string;
|
|
value: string;
|
|
}
|
|
export interface PasswordUpdate {
|
|
oldPassword: string;
|
|
newPassword: string;
|
|
retryPassword: string;
|
|
}
|
|
}
|