changes in course

This commit is contained in:
gandhimathi 2017-11-30 10:07:12 +05:30
parent 4000b35fce
commit 66f8efb6d1

View File

@ -38,7 +38,7 @@ class Call_Tracking_Controller extends REST_Controller {
$this->methods['getTrackingDetails_post']['limit'] = 1000; // 50 requests per hour per user/key
$this->methods['updateFollowupDetails_post']['limit'] = 1000; // 50 requests per hour per user/key
$this->methods['loadFollowupDetails_post']['limit'] = 1000; // 50 requests per hour per user/key
$this->methods['getDashboardCallTrack_post']['limit'] = 1000; // 50 requests per hour per user/key
// load the model
$this->load->model('Calltracking_model', 'Calltracking_model');
@ -225,7 +225,32 @@ class Call_Tracking_Controller extends REST_Controller {
}
/*
* get dash board call track details
* created by kms
* */
public function getDashboardCallTrack_post()
{
$search['requestedBy'] = $this->post('requestedBy');
$getdashBoardCallDetails = $this->Calltracking_model->getDashboardTrackingDetails($search);
if ($getdashBoardCallDetails)
{
$getdashBoardCallDetails['status'] = REST_Controller::HTTP_OK;
// Set the response and exit
$this->response($getdashBoardCallDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
}
else
{
// Set the response and exit
$this->response([
'message' => 'No records found!',
'status' => REST_Controller::HTTP_NOT_FOUND
], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
}