mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 11:36:09 +10:00
8 lines
173 B
Ruby
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
|