12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- class ApiConstants {
-
- static const baseUrl = 'http://vietnam-dev.casualabour.com';
-
- static const encrypterKey = 'xxxx';
-
- static const apiUserLogin = "/index.php/api/v1/hotel/login";
-
- static const apiUserLogout = "/index.php/api/v1/hotel/logout";
-
- static const apiResetPassword = "/index.php/api/v1/hotel/reset";
-
- static const apiHotelInfo = "/index.php/api/v1/hotel/info";
-
- static const apiHotelRegister = "/index.php/api/v1/hotel/register";
-
-
- static const apiLabourRequestIndex = "/index.php/api/v1/hotel/lab-req/index";
-
- static const apiLabourRequestList = "/index.php/api/v1/hotel/lab-req/table";
-
- static const apiLabourRequestAddOption = "/index.php/api/v1/hotel/lab-req/add-view";
-
- static const apiLabourRequestAddSubmit = "/index.php/api/v1/hotel/lab-req/add-submit";
-
- static const apiLabourRequestEditDetail = "/index.php/api/v1/hotel/lab-req/edit-view";
-
- static const apiLabourRequestEditSubmit = "/index.php/api/v1/hotel/lab-req/edit-submit";
-
- static const apiLabourRequestStateWorkFlow = "/index.php/api/v1/hotel/lab-req/status-view";
-
- static const apiLabourRequestRecall = "/index.php/api/v1/hotel/lab-req/recall";
-
-
- static const apiSignApplied = "/index.php/api/v1/hotel/sign/table";
-
- static const apiSignInOut = "/index.php/api/v1/hotel/sign/clock";
- }
|