9e14f437b6
the initial reason for this change was that graphicsmagick does not support writing to ico files. this fact lead to a chain of changes: 1. use png instead of ico (browser support is good enough) 2. render the overlays on the client using the canvas API. this way we only need to store the original favion and generate the overlay versions dynamically. this change also enables (next step) to simplify the handling of the stock favicons as well, as we don't need to generate all the versions upfront.
19 lines
514 B
Ruby
19 lines
514 B
Ruby
class StatusEntity < Grape::Entity
|
|
include RequestAwareEntity
|
|
|
|
expose :icon, :text, :label, :group
|
|
expose :status_tooltip, as: :tooltip
|
|
expose :has_details?, as: :has_details
|
|
expose :details_path
|
|
|
|
expose :favicon do |status|
|
|
Gitlab::Favicon.status_overlay(status.favicon)
|
|
end
|
|
|
|
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
|