Check this:
function beforeFilter() {
$this->Auth->authorize = 'controller';
$this->Auth->allow('delete');
}
function isAuthorized() {
if ($this->Auth->user('role') != 'admin') {
$this->Auth->deny('delete');
}
...
}
(from: http://book.cakephp.org/view/1255/AuthComponent-Methods#deny-1258)
This is the documentation-example for isAuthorized. what do I need it for if I can simply set the conditions in the beforeFilter itself? seems like extra useless code..