blob: 1d93a55e8e922ab76f5c8b7bafcd61ea7122c3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
class LabelLink < ActiveRecord::Base
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
|