summaryrefslogtreecommitdiff
path: root/app/policies/metrics/dashboard/annotation_policy.rb
blob: 25b78e104c416841695f3274181829ce9026fa7e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
module Metrics
  module Dashboard
    class AnnotationPolicy < BasePolicy
      delegate { @subject.cluster }
      delegate { @subject.environment }
    end
  end
end