debian-mirror-gitlab/app/models/group_label.rb
2016-11-03 12:29:30 +05:30

11 lines
262 B
Ruby

class GroupLabel < Label
belongs_to :group
validates :group, presence: true
alias_attribute :subject, :group
def to_reference(source_project = nil, target_project = nil, format: :id)
super(source_project, target_project, format: format)
end
end