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

24 lines
374 B
Ruby
Raw Normal View History

2017-02-28 10:48:39 -05:00
module Gitlab
module Ci
module Status
class Manual < Status::Core
2017-02-28 10:48:39 -05:00
def text
2017-06-07 16:13:44 -04:00
s_('CiStatusText|manual')
2017-02-28 10:48:39 -05:00
end
def label
2017-06-07 16:13:44 -04:00
s_('CiStatusLabel|manual action')
2017-02-28 10:48:39 -05:00
end
def icon
'icon_status_manual'
end
2017-03-10 10:49:52 -05:00
def favicon
'favicon_status_manual'
end
2017-02-28 10:48:39 -05:00
end
end
end
end