Welcome to mirror list, hosted at ThFree Co, Russian Federation.

annotation_policy.rb « dashboard « metrics « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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