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: f6d190867514c4fc9cd0ac027ed9efa4ce370c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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' }

      def config_project
        agent.project
      end
    end
  end
end