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 11:43:20 -04:00
module Ci
class RunnerNamespace < ApplicationRecord
2018-05-02 11:43:20 -04:00
extend Gitlab::Ci::Model
belongs_to :runner, inverse_of: :runner_namespaces
2018-05-28 07:07:28 -04:00
belongs_to :namespace, inverse_of: :runner_namespaces, class_name: '::Namespace'
2018-05-02 11:43:20 -04:00
belongs_to :group, class_name: '::Group', foreign_key: :namespace_id
2018-05-28 08:36:47 -04: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 11:43:20 -04:00
end
end