You are here

function comment_notify_perm in Comment Notify 6

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

Implementation of hook_perm().

File

./comment_notify.module, line 151
This module provides comment follow-up e-mail notification for anonymous and registered users.

Code

function comment_notify_perm() {
  return array(
    'administer comment notify',
    'subscribe to comments',
  );
}