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-03-03 08:35:19 -05:00
|
|
|
'manual'
|
2017-02-28 10:48:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def label
|
2017-03-03 08:35:19 -05:00
|
|
|
'manual action'
|
2017-02-28 10:48:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def icon
|
|
|
|
'icon_status_manual'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|