Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_label.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fc39cb87716245bbcd36c658f92b2f0eb5e0e37 (plain)
1
2
3
4
5
6
7
8
9
class GroupLabel
  attr_accessor :title, :labels
  alias_attribute :name, :title

  def initialize(title, labels)
    @title = title
    @labels = labels
  end
end