From d1e6695a627a619ac1321db4086eff8feefc287e Mon Sep 17 00:00:00 2001 From: Ryan Cobb Date: Mon, 26 Aug 2019 17:23:59 -0700 Subject: Add method to authorize reading from prometheus proxy --- app/controllers/clusters/base_controller.rb | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v1.2.1