You are here

function activity_comments_perm in Activity 6.2

Implementation of hook_perm().

File

activity_comments/activity_comments.module, line 18
Provides comment handling for activity messages

Code

function activity_comments_perm() {
  return array(
    'administer activity comments',
    'activity post comments',
    'activity comments delete own',
  );
}