summaryrefslogtreecommitdiff
path: root/app/models/label_link.rb
blob: 779657b25d5a693724170d2fcabe1d758a8ba294 (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 # rubocop:disable Cop/PolymorphicAssociations
  belongs_to :label

  validates :target, presence: true, unless: :importing?
  validates :label, presence: true, unless: :importing?
end