debian-mirror-gitlab/app/models/global_label.rb

21 lines
448 B
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
class GlobalLabel
attr_accessor :title, :labels
alias_attribute :name, :title
2016-06-02 11:05:42 +05:30
delegate :color, :description, to: :@first_label
2015-11-26 14:37:03 +05:30
def self.build_collection(labels)
labels = labels.group_by(&:title)
2016-06-02 11:05:42 +05:30
labels.map do |title, labels|
new(title, labels)
2015-11-26 14:37:03 +05:30
end
end
def initialize(title, labels)
@title = title
@labels = labels
2016-06-02 11:05:42 +05:30
@first_label = labels.find { |lbl| lbl.description.present? } || labels.first
2015-11-26 14:37:03 +05:30
end
end