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

16 lines
454 B
Ruby

# frozen_string_literal: true
module Clusters
module Agents
class GroupAuthorization < ApplicationRecord
self.table_name = 'agent_group_authorizations'
belongs_to :agent, class_name: 'Clusters::Agent', optional: false
belongs_to :group, class_name: '::Group', optional: false
validates :config, json_schema: { filename: 'cluster_agent_authorization_configuration' }
delegate :project, to: :agent
end
end
end