debian-mirror-gitlab/app/models/group_label.rb
2018-11-18 11:00:15 +05:30

14 lines
200 B
Ruby

# frozen_string_literal: true
class GroupLabel < Label
belongs_to :group
validates :group, presence: true
alias_attribute :subject, :group
def subject_foreign_key
'group_id'
end
end