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

13 lines
306 B
Ruby
Raw Normal View History

class StatusEntity < Grape::Entity
include RequestAwareEntity
2017-04-13 10:09:20 +00:00
expose :icon, :text, :label, :group
expose :has_details?, as: :has_details
expose :details_path
2017-04-13 10:09:20 +00:00
2017-04-13 11:14:31 +00:00
expose :favicon do |status|
ActionController::Base.helpers.image_path(File.join('ci_favicons', "#{status.favicon}.ico"))
end
end