Пример #1
0
 /**
  * @NoAdminRequired
  */
 public function addSharedEvent()
 {
     $eventid = $this->params('eventid');
     $calid = $this->params('calid');
     Object::addSharedEvent($eventid, $calid);
     $params = ['status' => 'success', 'msg' => 'Added Event success'];
     $response = new JSONResponse($params);
     return $response;
 }