mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

Co-authored-by: Mufei <327958099@qq.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
19 lines
354 B
TypeScript
19 lines
354 B
TypeScript
export enum UserStatusEnum {
|
|
active = 'active',
|
|
forbidden = 'forbidden'
|
|
}
|
|
export const userStatusMap = {
|
|
[UserStatusEnum.active]: {
|
|
label: 'support.user.status.active'
|
|
},
|
|
[UserStatusEnum.forbidden]: {
|
|
label: 'support.user.status.forbidden'
|
|
}
|
|
};
|
|
|
|
export enum OAuthEnum {
|
|
github = 'github',
|
|
google = 'google',
|
|
wechat = 'wechat'
|
|
}
|