123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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 JOB_LIST = '/job/list';
- static const JOB_LIST_DETAIL = '/job/list/detail';
- static const JOB_APPLIED_STAFF_LIST = '/job/applied';
- static const JOB_APPLIED_STAFF_EDIT = '/job/applied/edit';
- static const JOB_APPLIED_STAFF_WORKFLOW = '/job/applied/workflow';
- static const JOB_APPLIED_STAFF_DETAIL = '/job/applied/staff/detail';
- static const JOB_APPLIED_STAFF_REVIEWS = '/job/applied/staff/reviews';
-
- static const JOB_LABOUR_REQUEST_LIST = '/labour/list';
- static const JOB_LABOUR_REQUEST_ADD = '/labour/add';
- static const JOB_LABOUR_REQUEST_Detail = '/labour/detail';
- static const JOB_LABOUR_REQUEST_WORKFLOW = '/labour/workflow';
-
- static const PREVIEW_IMAGE = '/preview/image';
- static const GLOBAL_WEB = '/global/web';
-
- static const RunaloneMain = '/runalone/main';
- }
|