You are here

function notify_perm in Notify 6

Same name and namespace in other branches
  1. 5.2 notify.module \notify_perm()
  2. 5 notify.module \notify_perm()

Implementation of hook_perm().

File

./notify.module, line 189
Notify module sends email digests of new content and comments.

Code

function notify_perm() {
  return array(
    'access notify',
    'administer notify',
  );
}