Custom Module Edit Permissions for Non-Super_admins
I have a custom module called 'projects' that is defined in My_fuel_modules.php like this:
$config['modules']['projects'] = array(
'module_name' => 'Projects',
'model_name' => 'projects_model',
'model_location' => '', // so it will look in the normal model folder
'display_field' => 'title',
'permission' => 'projects',
);
I am only able to edit projects when I'm logged in as the super_admin. I have another user with all the permissions checked but is unable to edit the projects content. The module isn't even listed in the admin control panel for that user. Do I have to change the permission variable to allow that user to edit?
Comments