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