diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2018-12-18 22:50:15 +0000 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2018-12-18 22:50:15 +0000 |
commit | 5d68c23792e87e710877e4baf57605bcf11a6cb5 (patch) | |
tree | f205723d694a673f8b826c1ffb6814d2a302708c | |
parent | 98cf9edb2bb2700160dfda8b7430940f87f7149d (diff) | |
parent | eb9dcea6871150a6c03a144a937f653e637b5a26 (diff) | |
download | gitlab-ce-5d68c23792e87e710877e4baf57605bcf11a6cb5.tar.gz |
Merge branch 'port-missing-code-from-ee-in-group_policy' into 'master'
Add a missing policy allowance in GroupPolicy
See merge request gitlab-org/gitlab-ce!23906
-rw-r--r-- | app/policies/group_policy.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/policies/group_policy.rb b/app/policies/group_policy.rb index 6b4e56ef5e4..d1264559438 100644 --- a/app/policies/group_policy.rb +++ b/app/policies/group_policy.rb @@ -40,6 +40,7 @@ class GroupPolicy < BasePolicy rule { guest }.policy do enable :read_group + enable :read_list enable :upload_file enable :read_label end |