03dba01273
This reverts commit 8c126525fa
.
15 lines
307 B
Ruby
15 lines
307 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LabelEntity < Grape::Entity
|
|
expose :id, if: ->(label, _) { !label.is_a?(GlobalLabel) }
|
|
|
|
expose :title
|
|
expose :color
|
|
expose :description
|
|
expose :group_id
|
|
expose :project_id
|
|
expose :template
|
|
expose :text_color
|
|
expose :created_at
|
|
expose :updated_at
|
|
end
|