Welcome to mirror list, hosted at ThFree Co, Russian Federation.

label_link.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d68e1f543170d1efbd466dec417a7e4b1b0fea1d (plain)
1
2
3
4
5
6
7
8
9
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