blob: d68e1f543170d1efbd466dec417a7e4b1b0fea1d (
plain)
1
2
3
4
5
6
7
8
9
|
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
|