20 lines
544 B
Ruby
20 lines
544 B
Ruby
# 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
|