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

project_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: 1c71a0a432ad740a68f5f32c76b8d7fc5c6aa808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Clusters
  module Agents
    class ProjectAuthorization < ApplicationRecord
      self.table_name = 'agent_project_authorizations'

      belongs_to :agent, class_name: 'Clusters::Agent', optional: false
      belongs_to :project, class_name: '::Project', optional: false

      validates :config, json_schema: { filename: 'cluster_agent_authorization_configuration' }
    end
  end
end