Add sensitive word settings management

This commit is contained in:
2024-01-04 17:59:58 +08:00
parent 74204a0870
commit b1cd4c90ad
11 changed files with 239 additions and 21 deletions

17
src/global.d.ts vendored
View File

@@ -357,6 +357,23 @@ interface MailSendParam {
to: string
}
interface SensitiveWordVo {
id: string
word: string
useFor: string[]
enable: boolean
}
interface SensitiveWordAddParam {
word: string
useFor?: string[]
enable?: boolean
}
interface SensitiveWordUpdateParam {
ids: string[]
}
interface SoftwareInfoVo {
os: string
bitness: number