mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
feat: add UserSetting and set height of MoreIcon to 24px and replace logo (#111)
* feat: replace logo * feat: set height of MoreIcon to 24px * feat: add UserSetting
This commit is contained in:
17
web/src/constants/setting.ts
Normal file
17
web/src/constants/setting.ts
Normal file
@ -0,0 +1,17 @@
|
||||
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',
|
||||
};
|
||||
Reference in New Issue
Block a user