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

group_authorization.rb « agents « clusters « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74c0cec3b7ec7c3f58cea4e7b8c3c244fdf008e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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