Exemplo n.º 1
0
 public function my_events_get()
 {
     try {
         $this->response(['my_events' => $this->model->get_my($this->user_id), 'joined_events' => $this->model->get_my_joined($this->user_id)], 200);
     } catch (Exception $e) {
         $this->response($e->getMessage(), $e->getCode());
     }
 }