Commit 28bc6c524720dfdad68eb46eeb8aa7dced2cf42f
Exists in
master
and in
4 other branches
Merge pull request #777 from netdata/Show_better_permissions_overview
Make permission overview structured
Showing
1 changed file
with
28 additions
and
6 deletions
Show diff stats
app/views/help/permissions.html.haml
... | ... | @@ -12,30 +12,52 @@ |
12 | 12 | .ui-box.span3 |
13 | 13 | %h5 Reporter |
14 | 14 | %ul.unstyled |
15 | + %li Create new issue | |
16 | + %li Leave comments | |
17 | + %li Write on project wall | |
15 | 18 | %li Pull project code |
16 | 19 | %li Download project |
17 | - %li Create new issue | |
18 | 20 | %li Create new merge request |
19 | - %li Write on project wall | |
20 | 21 | %li Create a code snippets |
21 | 22 | |
22 | 23 | |
23 | 24 | .ui-box.span3 |
24 | 25 | %h5 Developer |
25 | 26 | %ul.unstyled |
27 | + %li Create new issue | |
28 | + %li Leave comments | |
29 | + %li Write on project wall | |
26 | 30 | %li Pull project code |
31 | + %li Download project | |
32 | + %li Create new merge request | |
33 | + %li Create a code snippets | |
27 | 34 | %li Create new branches |
28 | 35 | %li Push to non-protected branches |
29 | 36 | %li Remove non-protected branches |
30 | 37 | %li Add tags |
31 | - %li Create new issue | |
32 | 38 | %li Create new merge request |
33 | - %li Write on project wall | |
34 | 39 | %li Write a wiki |
35 | 40 | |
36 | 41 | .ui-box.span3 |
37 | 42 | %h5 Master |
38 | 43 | %ul.unstyled |
39 | - %li Full repository access | |
40 | - %li Full project access | |
44 | + %li Create new issue | |
45 | + %li Leave comments | |
46 | + %li Write on project wall | |
47 | + %li Pull project code | |
48 | + %li Download project | |
49 | + %li Create new merge request | |
50 | + %li Create a code snippets | |
51 | + %li Create new branches | |
52 | + %li Push to non-protected branches | |
53 | + %li Remove non-protected branches | |
54 | + %li Add tags | |
55 | + %li Create new merge request | |
56 | + %li Write a wiki | |
41 | 57 | %li Add new team members |
58 | + %li Push to protected branches | |
59 | + %li Remove protected branches | |
60 | + %li Push with force option | |
61 | + %li Edit project | |
62 | + %li Add Deploy Keys to project | |
63 | + %li Configure Project Hooks | ... | ... |