debian-mirror-gitlab/app/models/label_link.rb
2018-11-18 11:00:15 +05:30

12 lines
314 B
Ruby

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