123456789101112131415161718192021222324252627 |
- class RouterPath {
-
- static const SPLASH = '/';
- static const GUIDE = '/guide';
-
- static const AUTH_LOGIN = '/auth/login';
- static const AUTH_SIGNUP = '/auth/signup';
- static const AUTH_RESET_PSD = '/auth/rest_psd';
-
- static const MAIN = '/main';
- static const SETTINGS = '/settings';
-
- static const JOB_SIGN_IN_SIGN_OUT = '/job/sign_in_sign_out';
- static const PREVIEW_IMAGE = '/preview/image';
- static const GLOBAL_WEB = '/global/web';
-
- static const RunaloneMain = '/runalone/main';
- }
|