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

16 lines
353 B
Ruby
Raw Normal View History

class StatusEntity < Grape::Entity
include RequestAwareEntity
2017-04-13 06:09:20 -04:00
include CiStatusHelper
2017-04-13 06:09:20 -04:00
format_with(:status_favicon_path) do |favicon_name|
ci_status_favicon_path(favicon_name)
end
expose :icon, :text, :label, :group
expose :has_details?, as: :has_details
expose :details_path
2017-04-13 06:09:20 -04:00
expose :favicon, format_with: :status_favicon_path
end