summaryrefslogtreecommitdiff
path: root/app/models/clusters/agents/project_authorization.rb
blob: b9b44741936ada369a7fc150243f7dff875bdfd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Clusters
  module Agents
    class ProjectAuthorization < ApplicationRecord
      include ::Clusters::Agents::AuthorizationConfigScopes

      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