debian-mirror-gitlab/app/models/group_label.rb
2015-10-24 18:46:33 +05:30

10 lines
164 B
Ruby

class GroupLabel
attr_accessor :title, :labels
alias_attribute :name, :title
def initialize(title, labels)
@title = title
@labels = labels
end
end