gitlab-org--gitlab-foss/lib/gitlab/ci/status/manual.rb

26 lines
400 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-02-28 15:48:39 +00:00
module Gitlab
module Ci
module Status
class Manual < Status::Core
2017-02-28 15:48:39 +00:00
def text
2017-06-07 20:13:44 +00:00
s_('CiStatusText|manual')
2017-02-28 15:48:39 +00:00
end
def label
2017-06-07 20:13:44 +00:00
s_('CiStatusLabel|manual action')
2017-02-28 15:48:39 +00:00
end
def icon
2017-10-02 08:40:32 +00:00
'status_manual'
2017-02-28 15:48:39 +00:00
end
2017-03-10 15:49:52 +00:00
def favicon
'favicon_status_manual'
end
2017-02-28 15:48:39 +00:00
end
end
end
end