gitlab-org--gitlab-foss/app/serializers/label_entity.rb
2017-07-07 14:35:16 +01:00

13 lines
276 B
Ruby

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