gitlab-org--gitlab-foss/app/models/ci/runner_namespace.rb

21 lines
560 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-05-02 15:43:20 +00:00
module Ci
class RunnerNamespace < ApplicationRecord
2018-05-02 15:43:20 +00:00
extend Gitlab::Ci::Model
belongs_to :runner, inverse_of: :runner_namespaces
2018-05-28 11:07:28 +00:00
belongs_to :namespace, inverse_of: :runner_namespaces, class_name: '::Namespace'
2018-05-02 15:43:20 +00:00
belongs_to :group, class_name: '::Group', foreign_key: :namespace_id
2018-05-28 12:36:47 +00:00
validates :runner_id, uniqueness: { scope: :namespace_id }
validate :group_runner_type
private
def group_runner_type
errors.add(:runner, 'is not a group runner') unless runner&.group_type?
end
2018-05-02 15:43:20 +00:00
end
end