BigW Consortium Gitlab

manual.rb 369 Bytes
Newer Older
1 2 3
module Gitlab
  module Ci
    module Status
4
      class Manual < Status::Core
5
        def text
6
          s_('CiStatusText|manual')
7 8 9
        end

        def label
10
          s_('CiStatusLabel|manual action')
11 12 13
        end

        def icon
14
          'status_manual'
15
        end
16 17 18 19

        def favicon
          'favicon_status_manual'
        end
20 21 22 23
      end
    end
  end
end