debian-mirror-gitlab/app/models/label_link.rb
2019-07-07 11:18:12 +05:30

12 lines
339 B
Ruby

# frozen_string_literal: true
class LabelLink < ApplicationRecord
include Importable
belongs_to :target, polymorphic: true, inverse_of: :label_links # rubocop:disable Cop/PolymorphicAssociations
belongs_to :label
validates :target, presence: true, unless: :importing?
validates :label, presence: true, unless: :importing?
end