28 lines
771 B
Ruby
28 lines
771 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|
|
|
dir =
|
|
if Gitlab::Utils.to_boolean(ENV['CANARY'])
|
|
File.join('ci_favicons', 'canary')
|
|
elsif Rails.env.development?
|
|
File.join('ci_favicons', 'dev')
|
|
else
|
|
'ci_favicons'
|
|
end
|
|
|
|
ActionController::Base.helpers.image_path(File.join(dir, "#{status.favicon}.ico"))
|
|
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
|