debian-mirror-gitlab/lib/api/entities/label_basic.rb

10 lines
211 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class LabelBasic < Grape::Entity
2021-06-08 01:23:25 +05:30
expose :id, :name, :color, :description, :description_html, :text_color, :remove_on_close
2020-03-13 15:44:24 +05:30
end
end
end