summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Cobb <rcobb@gitlab.com>2019-08-26 17:23:59 -0700
committerRyan Cobb <rcobb@gitlab.com>2019-08-26 17:23:59 -0700
commitd1e6695a627a619ac1321db4086eff8feefc287e (patch)
treeddca1009759d564a11fc62f51cf21aea1f7aed0c
parent999b10cf02bfeb1558cdb1a2fb4b6e97cdbed8b4 (diff)
downloadgitlab-ce-63044-move-cluster-metrics.tar.gz
Add method to authorize reading from prometheus proxy63044-move-cluster-metrics
-rw-r--r--app/controllers/clusters/base_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/clusters/base_controller.rb b/app/controllers/clusters/base_controller.rb
index ef42f7c4074..188805c6106 100644
--- a/app/controllers/clusters/base_controller.rb
+++ b/app/controllers/clusters/base_controller.rb
@@ -31,6 +31,10 @@ class Clusters::BaseController < ApplicationController
access_denied! unless can?(current_user, :create_cluster, clusterable)
end
+ def authorize_read_prometheus!
+ access_denied! unless can?(current_user, :read_prometheus, clusterable)
+ end
+
def clusterable
raise NotImplementedError
end