dce26700b2
Partially addresses #47424.
21 lines
545 B
Ruby
21 lines
545 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|