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

agent_token_policy.rb « clusters « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e876ecfac2660df76941de0f54ce105bc3162268 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Clusters
  class AgentTokenPolicy < BasePolicy
    alias_method :token, :subject

    delegate { token.agent }
  end
end