gitlab-org--gitlab-foss/app/serializers/status_entity.rb

20 lines
506 B
Ruby
Raw Normal View History

class StatusEntity < Grape::Entity
include RequestAwareEntity
2017-04-13 06:09:20 -04:00
expose :icon, :text, :label, :group
expose :status_tooltip, as: :tooltip
expose :has_details?, as: :has_details
expose :details_path
2017-04-13 06:09:20 -04:00
2017-04-13 07:14:31 -04:00
expose :favicon do |status|
Gitlab::Favicon.status(status.favicon)
2017-04-13 07:14:31 -04:00
end
2017-05-06 12:45:46 -04:00
expose :action, if: -> (status, _) { status.has_action? } do
expose :action_icon, as: :icon
expose :action_title, as: :title
expose :action_path, as: :path
expose :action_method, as: :method
end
end