mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-05 01:02:59 +08:00
657fa32217
* feat: system config type * fix: retraining permission
22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
export enum SystemConfigsTypeEnum {
|
|
fastgpt = 'fastgpt',
|
|
fastgptPro = 'fastgptPro',
|
|
systemMsgModal = 'systemMsgModal',
|
|
license = 'license'
|
|
}
|
|
|
|
export const SystemConfigsTypeMap = {
|
|
[SystemConfigsTypeEnum.fastgpt]: {
|
|
label: 'fastgpt'
|
|
},
|
|
[SystemConfigsTypeEnum.fastgptPro]: {
|
|
label: 'fastgptPro'
|
|
},
|
|
[SystemConfigsTypeEnum.systemMsgModal]: {
|
|
label: 'systemMsgModal'
|
|
},
|
|
[SystemConfigsTypeEnum.license]: {
|
|
label: 'license'
|
|
}
|
|
};
|