Welcome to mirror list, hosted at ThFree Co, Russian Federation.

status_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1338068068a452c3907034d05d9bfa8df588b534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class StatusEntity < Grape::Entity
  include RequestAwareEntity

  expose :icon, :text, :label, :group

  expose :has_details?, as: :has_details
  expose :details_path

  expose :favicon do |status|
    dir = 'ci_favicons'

    if ENV['CANARY']
      dir = File.join(dir, 'canary')
    elsif Rails.env.development?
      dir = File.join(dir, 'dev')
    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