hyper-tuner-cloud/src/routes.ts

19 lines
505 B
TypeScript
Raw Normal View History

2021-03-22 14:29:03 -07:00
// eslint-disable-next-line import/prefer-default-export
export enum Routes {
ROOT = '/',
2022-01-09 14:33:38 -08:00
TUNE_ROOT = '/t/:tuneId',
TUNE_TAB = '/t/:tuneId/:tab',
TUNE_TUNE = '/t/:tuneId/tune',
TUNE_DIALOG = '/t/:tuneId/tune/:category/:dialog',
TUNE_LOG = '/t/:tuneId/log',
TUNE_DIAGNOSE = '/t/:tuneId/diagnose',
LOGIN = '/auth/login',
LOGOUT = '/auth/logout',
SIGN_UP = '/auth/sign-up',
FORGOT_PASSWORD = '/auth/forgot-password',
RESET_PASSWORD = '/auth/reset-password',
2022-01-02 13:25:52 -08:00
UPLOAD = '/upload',
2021-03-22 14:29:03 -07:00
}