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

failed.rb « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb498f72ffe85e8841625f3033d64eb632f9ec93 (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
# frozen_string_literal: true

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

        def label
          s_('CiStatusLabel|failed')
        end

        def icon
          'status_failed'
        end

        def favicon
          'favicon_status_failed'
        end

        def details_path
          nil
        end
      end
    end
  end
end