You are here

function restful_permission in RESTful 7

Same name and namespace in other branches
  1. 7.2 restful.module \restful_permission()

Implements hook_permission().

File

./restful.module, line 202

Code

function restful_permission() {
  return array(
    'administer restful' => array(
      'title' => t('Administer the RESTful module'),
      'description' => t('Access the administration pages for the RESTful module.'),
    ),
  );
}