You are here

function oa_users_og_permission in Open Atrium Core 7.2

Implements hook_og_permission().

File

modules/oa_users/oa_users.module, line 70

Code

function oa_users_og_permission() {
  return array(
    'add external user' => array(
      'title' => t('Add External User'),
      'description' => t('Allows a member to add users to the site and a space, group, or team simultaneously.'),
      'default role' => array(
        OG_ADMINISTRATOR_ROLE,
      ),
    ),
  );
}