mediamosa_maintenance_browse_permission()Implements hook_permission().
sites/all/modules/mediamosa/maintenance/browse/mediamosa_maintenance_browse.module, line 40
<?php
function mediamosa_maintenance_browse_permission() {
return array(
'access mediamosa assets' => array(
'title' => t('Browse assets'),
'description' => t('Users with this permission may browse through the assets.'),
),
'access mediamosa collections' => array(
'title' => t('Browse collections'),
'description' => t('Users with this permission may browse through the collections.'),
),
'access mediamosa restcalls' => array(
'title' => t('Browse REST calls'),
'description' => t('Users with this permission may browse through the REST call listing and view each of the REST call properties.'),
),
'access mediamosa revisions' => array(
'title' => t('Browse revisions'),
'description' => t('Users with this permission may browse through the revisions listing.'),
),
);
}
?>