ragflow / web /src /constants /setting.ts
balibabu
feat: add UserSetting and set height of MoreIcon to 24px and replace logo (#111)
657bc8a
raw
history blame
454 Bytes
export const UserSettingBaseKey = 'user-setting';
export enum UserSettingRouteKey {
Profile = 'profile',
Password = 'password',
Model = 'model',
Team = 'team',
Logout = 'logout',
}
export const UserSettingRouteMap = {
[UserSettingRouteKey.Profile]: 'Profile',
[UserSettingRouteKey.Password]: 'Password',
[UserSettingRouteKey.Model]: 'Model Providers',
[UserSettingRouteKey.Team]: 'Team',
[UserSettingRouteKey.Logout]: 'Log out',
};