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

waiting_for_callback.rb « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0184a910edecba480c606f7cf6ceea9946205fad (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 WaitingForCallback < Status::Core
        def text
          s_('CiStatusText|Waiting')
        end

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

        def icon
          'status_pending'
        end

        def favicon
          'favicon_status_pending'
        end

        def group
          'waiting-for-callback'
        end

        def details_path
          nil
        end
      end
    end
  end
end