Hi there,
I have a controller in my app which I want to get the Auth-allowed actions from other controllers.
So i.e. if I have a PagesController:
{{{
class pagesController extends AppController {
[...]
function beforeFilter() {
parent::beforeFilter();
$this->Auth->allow( array('index', 'view', 'search'));
}
[...]
}
}}}
Whether I have other allowed Au...
