mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00

Co-authored-by: Mufei <327958099@qq.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
export enum UserAuthTypeEnum {
|
|
register = 'register',
|
|
findPassword = 'findPassword',
|
|
wxLogin = 'wxLogin'
|
|
}
|
|
|
|
export const userAuthTypeMap = {
|
|
[UserAuthTypeEnum.register]: 'register',
|
|
[UserAuthTypeEnum.findPassword]: 'findPassword',
|
|
[UserAuthTypeEnum.wxLogin]: 'wxLogin'
|
|
};
|