1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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 AUTH_SELECT_COUNTRY = '/auth/select/country';
-
- 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 DEVICE_LIST = '/device/list';
-
- static const PREVIEW_IMAGE = '/preview/image';
- static const GLOBAL_WEB = '/global/web';
-
- static const RunaloneMain = '/runalone/main';
- }
|