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

label_basic.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00ecea26ec3d5fe53883fe620d86a9ba1b776ed2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module API
  module Entities
    class LabelBasic < Grape::Entity
      expose :id, :name, :color, :description, :description_html, :text_color, :remove_on_close
    end
  end
end