aboutsummaryrefslogtreecommitdiffstats
path: root/include/permissions.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-10 13:44:54 -0800
committerfriendica <info@friendica.com>2012-12-10 13:44:54 -0800
commitb0970850d4e3facac26debe54f34edc21bca1ff7 (patch)
tree295b1ecee96d1e641c842923a39f553e2ed802c5 /include/permissions.php
parentc066793554cf5a779b791df8a9fe93461f1598a4 (diff)
downloadvolse-hubzilla-b0970850d4e3facac26debe54f34edc21bca1ff7.tar.gz
volse-hubzilla-b0970850d4e3facac26debe54f34edc21bca1ff7.tar.bz2
volse-hubzilla-b0970850d4e3facac26debe54f34edc21bca1ff7.zip
Allow forum/account delegation by anybody? On any site? But of course...
Diffstat (limited to 'include/permissions.php')
-rw-r--r--include/permissions.php1
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;
}