2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class LabelLink < ApplicationRecord
|
2020-02-12 16:08:48 -05:00
|
|
|
include BulkInsertSafe
|
2016-07-22 06:10:45 -04:00
|
|
|
include Importable
|
|
|
|
|
2018-09-06 13:02:51 -04:00
|
|
|
belongs_to :target, polymorphic: true, inverse_of: :label_links # rubocop:disable Cop/PolymorphicAssociations
|
2014-07-29 10:10:15 -04:00
|
|
|
belongs_to :label
|
|
|
|
|
2016-07-22 06:10:45 -04:00
|
|
|
validates :target, presence: true, unless: :importing?
|
|
|
|
validates :label, presence: true, unless: :importing?
|
2014-07-29 10:10:15 -04:00
|
|
|
end
|