aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Access
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-09 21:08:02 -0700
committerredmatrix <git@macgirvin.com>2016-07-09 21:08:02 -0700
commitc9db8c6857d8676b3eb3c19548eb303656dc5fff (patch)
treeb24726528d3fd98803fb481e350964f378fe6f28 /Zotlabs/Access
parent917a465ccd7dfa4992241b1e5d4418b3a31f1615 (diff)
downloadvolse-hubzilla-c9db8c6857d8676b3eb3c19548eb303656dc5fff.tar.gz
volse-hubzilla-c9db8c6857d8676b3eb3c19548eb303656dc5fff.tar.bz2
volse-hubzilla-c9db8c6857d8676b3eb3c19548eb303656dc5fff.zip
more permissions work
Diffstat (limited to 'Zotlabs/Access')
-rw-r--r--Zotlabs/Access/Permissions.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/Zotlabs/Access/Permissions.php b/Zotlabs/Access/Permissions.php
index 0f1a04b31..b389fc229 100644
--- a/Zotlabs/Access/Permissions.php
+++ b/Zotlabs/Access/Permissions.php
@@ -27,22 +27,22 @@ class Permissions {
static public function Perms($filter = '') {
$perms = [
- [ 'view_stream' => t('Can view my normal stream and posts') ],
- [ 'send_stream' => t('Can send me their channel stream and posts') ],
- [ 'view_profile' => t('Can view my default channel profile') ],
- [ 'view_contacts' => t('Can view my connections') ],
- [ 'view_storage' => t('Can view my file storage and photos') ],
- [ 'write_storage' => t('Can upload/modify my file storage and photos') ],
- [ 'view_pages' => t('Can view my channel webpages') ],
- [ 'write_pages' => t('Can create/edit my channel webpages') ],
- [ 'post_wall' => t('Can post on my channel (wall) page') ],
- [ 'post_comments' => t('Can comment on or like my posts') ],
- [ 'post_mail' => t('Can send me private mail messages') ],
- [ 'post_like' => t('Can like/dislike profiles and profile things') ],
- [ 'tag_deliver' => t('Can forward to all my channel connections via @+ mentions in posts') ],
- [ 'chat' => t('Can chat with me') ],
- [ 'republish' => t('Can source my public posts in derived channels') ],
- [ 'delegate' => t('Can administer my channel') ]
+ 'view_stream' => t('Can view my channel stream and posts'),
+ 'send_stream' => t('Can send me their channel stream and posts'),
+ 'view_profile' => t('Can view my default channel profile'),
+ 'view_contacts' => t('Can view my connections'),
+ 'view_storage' => t('Can view my file storage and photos'),
+ 'write_storage' => t('Can upload/modify my file storage and photos'),
+ 'view_pages' => t('Can view my channel webpages'),
+ 'write_pages' => t('Can create/edit my channel webpages'),
+ 'post_wall' => t('Can post on my channel (wall) page'),
+ 'post_comments' => t('Can comment on or like my posts'),
+ 'post_mail' => t('Can send me private mail messages'),
+ 'post_like' => t('Can like/dislike profiles and profile things'),
+ 'tag_deliver' => t('Can forward to all my channel connections via @+ mentions in posts'),
+ 'chat' => t('Can chat with me'),
+ 'republish' => t('Can source my public posts in derived channels'),
+ 'delegate' => t('Can administer my channel')
];
$x = array('permissions' => $perms, 'filter' => $filter);