You are here

function fastly_permission in Fastly 7.2

Same name and namespace in other branches
  1. 7 fastly.module \fastly_permission()

Return permissions for the Fastly module.

File

./fastly.module, line 60
Fastly module.

Code

function fastly_permission() {
  $perms = array(
    'administer fastly' => array(
      'title' => t('Administer Fastly'),
      'description' => t('Allows users to administer Fastly.'),
      'restrict access' => TRUE,
    ),
  );
  return $perms;
}