changes in course

This commit is contained in:
gandhimathi 2017-11-28 20:32:49 +05:30
parent 21df4509bb
commit a5a28f3868

View File

@ -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';