summaryrefslogtreecommitdiff
path: root/app/policies/clusters/agent_token_policy.rb
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