diff options
author | Douwe Maan <douwe@gitlab.com> | 2019-03-05 16:28:47 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2019-03-05 16:28:47 +0000 |
commit | b3bd85643029f90269338ae6f37f2005563f77ff (patch) | |
tree | 50e35a137e5f6ba5be472d281364e2fdbd0f3a0a /app/policies | |
parent | 2d99b0a0d6173dabab130117a23f2cb047a7b90a (diff) | |
parent | 01b1076bd869a5bbcbaf6df55e825cc39f705e2a (diff) | |
download | gitlab-ce-b3bd85643029f90269338ae6f37f2005563f77ff.tar.gz |
Merge branch '56809-graphql-version-api' into 'master'
Add metadata about the GitLab server to GraphQL
See merge request gitlab-org/gitlab-ce!24636
Diffstat (limited to 'app/policies')
-rw-r--r-- | app/policies/global_policy.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/policies/global_policy.rb b/app/policies/global_policy.rb index 16c58730878..d412a591fdc 100644 --- a/app/policies/global_policy.rb +++ b/app/policies/global_policy.rb @@ -68,6 +68,10 @@ class GlobalPolicy < BasePolicy enable :read_users_list end + rule { ~anonymous }.policy do + enable :read_instance_metadata + end + rule { admin }.policy do enable :read_custom_attribute enable :update_custom_attribute |