mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
20 lines
381 B
TypeScript
20 lines
381 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',
|
|
microsoft = 'microsoft'
|
|
}
|