debian-mirror-gitlab/app/serializers/label_entity.rb
2021-01-03 14:25:43 +05:30

20 lines
373 B
Ruby

# frozen_string_literal: true
class LabelEntity < Grape::Entity
expose :id
expose :title
expose :color
expose :description
expose :group_id
expose :project_id
expose :template
expose :text_color
expose :created_at
expose :updated_at
expose :priority, if: -> (*) { options.key?(:project) } do |label|
label.priority(options[:project])
end
end