29 lines
455 B
Ruby
29 lines
455 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Status
|
|
class Canceled < Status::Core
|
|
def text
|
|
s_('CiStatusText|canceled')
|
|
end
|
|
|
|
def label
|
|
s_('CiStatusLabel|canceled')
|
|
end
|
|
|
|
def icon
|
|
'status_canceled'
|
|
end
|
|
|
|
def favicon
|
|
'favicon_status_canceled'
|
|
end
|
|
|
|
def details_path
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|