gitlab-org--gitlab-foss/app/models/global_label.rb

27 lines
534 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class GlobalLabel
attr_accessor :title, :labels
alias_attribute :name, :title
2017-07-07 12:54:49 +00:00
delegate :color, :text_color, :description, to: :@first_label
2016-03-07 04:07:19 +00:00
def for_display
@first_label
end
def self.build_collection(labels)
labels = labels.group_by(&:title)
2016-03-07 04:07:19 +00:00
labels.map do |title, labels|
new(title, labels)
end
end
def initialize(title, labels)
@title = title
@labels = labels
2016-03-07 04:07:19 +00:00
@first_label = labels.find { |lbl| lbl.description.present? } || labels.first
end
end