diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 15:06:00 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 15:06:00 +0300 |
commit | 482f64c574acbfac56d1031e7b8efe91429f70aa (patch) | |
tree | 6207243feaf84d2d4bde5012f6c23770f35f077e | |
parent | 0a2a34a4d18d0489f7db6aad5b5518b503692b5b (diff) | |
download | gitlab-ce-482f64c574acbfac56d1031e7b8efe91429f70aa.tar.gz |
Mention group permissions on Help#permissions page
-rw-r--r-- | app/views/help/permissions.html.haml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app/views/help/permissions.html.haml b/app/views/help/permissions.html.haml index da5210bad3d..bab1e7c0a41 100644 --- a/app/views/help/permissions.html.haml +++ b/app/views/help/permissions.html.haml @@ -1,6 +1,9 @@ = render layout: 'help/layout' do %h3.page-title Permissions + %p.light User has different abilities depends on access level he has in particular group or project + %hr + %h4 Project: %table.table %thead %tr @@ -158,3 +161,50 @@ %td %td %td.permission-x ✓ + + %h4 Group + %table.table + %thead + %tr + %th Action + %th Guest + %th Reporter + %th Developer + %th Master + %th Owner + %tbody + %tr + %td Browse group + %td.permission-x ✓ + %td.permission-x ✓ + %td.permission-x ✓ + %td.permission-x ✓ + %td.permission-x ✓ + %tr + %td Edit group + %td + %td + %td + %td + %td.permission-x ✓ + %tr + %td Create project in group + %td + %td + %td + %td + %td.permission-x ✓ + %tr + %td Manage group members + %td + %td + %td + %td + %td.permission-x ✓ + %tr + %td Remove group + %td + %td + %td + %td + %td.permission-x ✓ |