예제 #1
0
 public function settings_get()
 {
     $this->auth();
     try {
         $this->response($this->user_settings_model->get_user_settings($this->user_id), 200);
     } catch (Exception $e) {
         $this->response($e->getMessage(), $e->getCode());
     }
 }