You are here

function shurly_service_perm in ShURLy 6

Implementation of hook_perm().

File

shurly_service/shurly_service.module, line 14
Link ShURLy functionalities to services module. @todo

Code

function shurly_service_perm() {
  $perms = array(
    'administer short URL services',
    'Expand short URLs',
    'Request custom short URL',
  );
  return $perms;
}