summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/waiting_for_resource.rb
blob: 2026148f752dadeae4358eec240a2a3f33dcaae5 (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
28
29
30
31
32
33
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      class WaitingForResource < Status::Core
        def text
          s_('CiStatusText|waiting')
        end

        def label
          s_('CiStatusLabel|waiting for resource')
        end

        def icon
          'status_pending'
        end

        def favicon
          'favicon_pending'
        end

        def group
          'waiting-for-resource'
        end

        def details_path
          nil
        end
      end
    end
  end
end