session master changes done

This commit is contained in:
gandhimathi 2018-05-26 10:46:48 +05:30
parent ce3090a34a
commit 78a42d0468

View File

@ -14,9 +14,9 @@ class SessionMater_Controller extends REST_Controller {
// Configure limits on our controller methods
// Ensure you have created the 'limits' table and enabled 'limits' within application/config/rest.php
$this->methods['addSessionMaterDetails_post']['limit'] = 100; // 50 requests per hour per user/key
$this->methods['getSessionMaterDetails_post']['limit'] = 500; // 50 requests per hour per user/key
$this->methods['updateSessionMaterDetails_post']['limit'] = 500;// 500 requests per hour per user/key
$this->methods['addSessionMasterDetails_post']['limit'] = 100; // 50 requests per hour per user/key
$this->methods['getSessionMasterDetails_post']['limit'] = 500; // 50 requests per hour per user/key
$this->methods['updateSessionMasterDetails_post']['limit'] = 500;// 500 requests per hour per user/key
// load the model
$this->load->model('SeesionMaster_model', 'sessionM_model');