diff --git a/Apollo/api/application/config/routes.php b/Apollo/api/application/config/routes.php index 7f6163f3..6e196527 100644 --- a/Apollo/api/application/config/routes.php +++ b/Apollo/api/application/config/routes.php @@ -58,30 +58,35 @@ $route['translate_uri_dashes'] = TRUE; | Sample REST API Routes | ------------------------------------------------------------------------- */ +$route['autenticadors'] = 'autenticador/index'; // Example 4 $route['login'] = 'Login_Controller/login'; +// branch +$route['getMasterBranchDetails'] = 'Employee_Controller/getMasterBranchDetails'; +$route['addBranchDetails'] = 'Branch_Controller/addBranchDetails'; +$route['getBranchDetails'] = 'Branch_Controller/getBranchDetails'; +$route['updateBranchDetails'] = 'Branch_Controller/updateBranchDetails'; +// staff $route['employee'] = 'Employee_Controller/employee'; $route['getEmployeeList'] = 'Employee_Controller/getEmployeeList'; $route['getRoleDetails'] = 'Employee_Controller/getRoleDetails'; -$route['getMasterBranchDetails'] = 'Employee_Controller/getMasterBranchDetails'; $route['chkEmpExistDetail'] = 'Employee_Controller/check_exist'; $route['insertEmployee'] = 'Employee_Controller/addEmployee'; $route['chkUpdateEmpExistDetail'] = 'Employee_Controller/check_update_exist'; $route['updateEmpExistDetail'] = 'Employee_Controller/updateEmployee'; $route['getEmpBranchDetails'] = 'Employee_Controller/getEmpBranchDetails'; $route['updateEmpBranchDetail'] = 'Employee_Controller/updateEmpBranchDetail'; -$route['autenticadors'] = 'autenticador/index'; // Example 4 -$route['addBranchDetails'] = 'Branch_Controller/addBranchDetails'; -$route['getBranchDetails'] = 'Branch_Controller/getBranchDetails'; -$route['updateBranchDetails'] = 'Branch_Controller/updateBranchDetails'; +// call tracking $route['getTrackingLeadDetails'] = 'Call_Tracking_Controller/getTrackingLeadDetails'; $route['addLeadTrackingDetails'] = 'Call_Tracking_Controller/addLeadTrackingDetails'; $route['getTrackingDetails'] = 'Call_Tracking_Controller/getTrackingDetails'; $route['updateFollowupDetails'] = 'Call_Tracking_Controller/updateFollowupDetails'; $route['loadFollowupDetails'] = 'Call_Tracking_Controller/loadFollowupDetails'; +// university $route['insertUniversity'] = 'University_Controller/insertUniversity'; $route['getUniversity'] = 'University_Controller/getUniversity'; $route['chkUnivIdExistDetail'] = 'University_Controller/chkUnivIdExistDetail'; $route['updateUniversityDetail'] = 'University_Controller/updateUniversityDetail'; +//course $route['getCourseDetails'] = 'Course_Controller/getCourseDetails'; $route['addCourseDetails'] = 'Course_Controller/addCourseDetails'; $route['updateCourseDetails'] = 'Course_Controller/updateCourseDetails'; @@ -104,6 +109,11 @@ $route['getStudentCourseList'] = 'Student_Controller/getStudentCourseList'; $route['getStudentCourseDetails'] = 'Student_Controller/getStudentCourseDetails'; $route['updateStudentCourseDetail'] = 'Student_Controller/updateStudentCourseDetail'; +//batch +$route['addBatchDetails'] = 'Batch_Controller/addBatchDetails'; +$route['updateBatchDetails'] = 'Batch_Controller/updateBatchDetails'; +$route['getBatchDetails'] = 'Batch_Controller/getBatchDetails'; +