I have added one more private resource (say manage faq feature) in the ACL.
But its not allowing me to access it even if I am logged in.
$privateResources = array(
'companies' => array('index', 'search', 'new', 'edit', 'save', 'create', 'delete'),
'products' => array('index', 'search', 'new', 'edit', 'save', 'create', 'delete'),
'producttypes' => array('index', 'search', 'new', 'edit', 'save', 'create', 'delete'),
'faqs' => array('index', 'search', 'new', 'edit', 'save', 'create', 'delete'), //new private resource
'invoices' => array('index', 'profile')
);
New Private resource faqs is returning false when check for ACL:
php $allowed = $acl->isAllowed($role, $controller, $action);
Do I have to clear any type of cache?
Kindly help on how to proceed from this point.