CakePHP Auth only for Admin Prefix
authentication, cakephp, cakephp-2.4
Solution
just `$this->Auth->allow();` when `prefix != 'admin'`
Problem
I have admin prefix where we have a CMS based section where site owners will be able to maintain the app content. Is there any way to restrict automatically only those sections via Auth component. While other parts dont require authentication. ``` // other wise i will have to add a lot of actions like below $this->Auth->allow('home', 'about', 'contacts); ```