debian-mirror-gitlab/app/models/label_link.rb
2014-09-02 14:37:02 +02:00

8 lines
173 B
Ruby

class LabelLink < ActiveRecord::Base
belongs_to :target, polymorphic: true
belongs_to :label
validates :target, presence: true
validates :label, presence: true
end