_isSiteAdmin()) $this->redirect('/'); if (!Configure::read('MISP.enableOrgBlacklisting')) { $this->Session->setFlash(__('Organisation Blacklisting is not currently enabled on this instance.')); $this->redirect('/'); } } public $paginate = array( 'limit' => 60, 'maxLimit' => 9999, // LATER we will bump here on a problem once we have more than 9999 events <- no we won't, this is the max a user van view/page. 'order' => array( 'OrgBlacklist.created' => 'DESC' ), ); public function index() { $this->BlackList->index($this->_isRest()); } public function add() { $this->BlackList->add($this->_isRest()); } public function edit($id) { $this->BlackList->edit($this->_isRest(), $id); } public function delete($id) { $this->BlackList->delete($this->_isRest(), $id); } }