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