Can someone provide more information about the configuration parameter for the permissions key? I can't find any information customizing permissions (i.e. edit, publish). http://www.getfuelcms.com/user_guide/modules/simple
The Pages module is a good example to look at in fuel/modules/fuel/config/fuel_modules.php. You create permissions with the name of the module and then an underscore and the type of the permission (e.g. publish, edit, delete). 'permission' => array('edit' => 'pages', 'publish' => 'pages_publish', 'delete' => 'pages_delete'),
Comments
'permission' => array('edit' => 'pages', 'publish' => 'pages_publish', 'delete' => 'pages_delete'),