You are here

function privatemsg_attachments_perm in Privatemsg 6.2

Implements hook_perm()

File

privatemsg_attachments/privatemsg_attachments.module, line 11
Allows users to add attachments to messages

Code

function privatemsg_attachments_perm() {
  return array(
    'upload private message attachments',
    'view private message attachments',
  );
}