Add mail settings management to system settings page
This commit is contained in:
20
src/global.d.ts
vendored
20
src/global.d.ts
vendored
@@ -294,3 +294,23 @@ interface GroupChangeStatusParam {
|
||||
interface AvatarBase64Vo {
|
||||
base64: string
|
||||
}
|
||||
|
||||
interface SystemSettingVo {
|
||||
mail: MailSettingsVo
|
||||
}
|
||||
|
||||
interface MailSettingsVo {
|
||||
host?: string
|
||||
port?: number
|
||||
username?: string
|
||||
password?: string
|
||||
from?: string
|
||||
}
|
||||
|
||||
interface MailSettingsParam {
|
||||
host?: string
|
||||
port?: number
|
||||
username?: string
|
||||
password?: string
|
||||
from?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user