2017-02-28 10:48:39 -05:00
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Status
|
2017-03-03 08:35:19 -05:00
|
|
|
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
|
2017-10-02 04:40:32 -04:00
|
|
|
'status_manual'
|
2017-02-28 10:48:39 -05:00
|
|
|
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
|