mirror of
https://github.com/docmost/docmost.git
synced 2026-05-11 00:44:07 +08:00
e56f7933f4
* refactor forgot password system * ready
25 lines
539 B
TypeScript
25 lines
539 B
TypeScript
const APP_ROUTE = {
|
|
HOME: "/home",
|
|
AUTH: {
|
|
LOGIN: "/login",
|
|
SIGNUP: "/signup",
|
|
SETUP: "/setup/register",
|
|
FORGOT_PASSWORD: "/forgot-password",
|
|
PASSWORD_RESET: "/password-reset",
|
|
},
|
|
SETTINGS: {
|
|
ACCOUNT: {
|
|
PROFILE: "/settings/account/profile",
|
|
PREFERENCES: "/settings/account/preferences",
|
|
},
|
|
WORKSPACE: {
|
|
GENERAL: "/settings/workspace",
|
|
MEMBERS: "/settings/members",
|
|
GROUPS: "/settings/groups",
|
|
SPACES: "/settings/spaces",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default APP_ROUTE;
|