mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-10 01:08:08 +08:00
4fbe27f2df
* activity points * modal * ui * fix * pref: zod schema * perf: ad api with zod * perf: plan year switch * perf: plan * i18n * fix: hook * fix: activity checker * fix: i18n * fix clear token * fix * back * can close modal in pay * ad token * rename * fix * total points * eng i18n --------- Co-authored-by: archer <545436317@qq.com>
30 lines
670 B
TypeScript
30 lines
670 B
TypeScript
export enum SystemConfigsTypeEnum {
|
|
fastgpt = 'fastgpt',
|
|
fastgptPro = 'fastgptPro',
|
|
systemMsgModal = 'systemMsgModal',
|
|
license = 'license',
|
|
operationalAd = 'operationalAd',
|
|
activityAd = 'activityAd'
|
|
}
|
|
|
|
export const SystemConfigsTypeMap = {
|
|
[SystemConfigsTypeEnum.fastgpt]: {
|
|
label: 'fastgpt'
|
|
},
|
|
[SystemConfigsTypeEnum.fastgptPro]: {
|
|
label: 'fastgptPro'
|
|
},
|
|
[SystemConfigsTypeEnum.systemMsgModal]: {
|
|
label: 'systemMsgModal'
|
|
},
|
|
[SystemConfigsTypeEnum.license]: {
|
|
label: 'license'
|
|
},
|
|
[SystemConfigsTypeEnum.operationalAd]: {
|
|
label: 'operationalAd'
|
|
},
|
|
[SystemConfigsTypeEnum.activityAd]: {
|
|
label: 'activityAd'
|
|
}
|
|
};
|