gitlab-org--gitlab-foss/app/models/label_link.rb

10 lines
237 B
Ruby

class LabelLink < ActiveRecord::Base
include Importable
belongs_to :target, polymorphic: true
belongs_to :label
validates :target, presence: true, unless: :importing?
validates :label, presence: true, unless: :importing?
end