debian-mirror-gitlab/app/models/clusters/agents/implicit_authorization.rb
2021-11-11 11:23:49 +05:30

20 lines
323 B
Ruby

# frozen_string_literal: true
module Clusters
module Agents
class ImplicitAuthorization
attr_reader :agent
delegate :id, to: :agent, prefix: true
delegate :project, to: :agent
def initialize(agent:)
@agent = agent
end
def config
nil
end
end
end
end