diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/permissions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/permissions.php b/include/permissions.php index f6d150b58..8e0dec6c2 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -23,6 +23,7 @@ function get_perms() { 'post_photos' => array('channel_w_photos', intval(PERMS_W_PHOTOS), false, t('Can post photos to my photo albums'), ''), 'tag_deliver' => array('channel_w_tagwall', intval(PERMS_W_TAGWALL), false, t('Can forward to all my channel contacts via post tags'), t('Advanced - useful for creating group forum channels')), 'chat' => array('channel_w_chat', intval(PERMS_W_CHAT), false, t('Can chat with me (when available)'), t('Requires compatible chat plugin')), + 'delegate' => array('channel_a_delegate', intval(PERMS_A_DELEGATE), false, t('Can administer my channel resources'), t('Extremely advanced. Leave this alone unless you know what you are doing')), ); return $global_perms; } |