You are here

function clients_perm in Web Service Clients 6

Same name and namespace in other branches
  1. 6.2 clients.module \clients_perm()
  2. 7 clients.module \clients_perm()

Implementation of hook_perm()

Return value

An array of valid permissions for the clients module

File

./clients.module, line 39
Clients module - handles keys and service connections and provides an API for clients @author Django Beatty - adub

Code

function clients_perm() {
  return array(
    'admin clients connections',
    'admin clients resources',
  );
}