gitlab-ce/app/serializers/issuables/base_label_entity.rb

17 lines
285 B
Ruby

# frozen_string_literal: true
module Issuables
class BaseLabelEntity < Grape::Entity
expose :id
expose :title
expose :color do |label|
label.color.to_s
end
expose :description
expose :text_color
expose :created_at
expose :updated_at
end
end