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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
455 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Ci
module Status
class Canceled < Status::Core
def text
2017-06-07 20:13:44 +00:00
s_('CiStatusText|canceled')
end
def label
2017-06-07 20:13:44 +00:00
s_('CiStatusLabel|canceled')
end
def icon
2017-10-02 08:40:32 +00:00
'status_canceled'
end
def favicon
2017-03-03 07:46:07 +00:00
'favicon_status_canceled'
end
def details_path
nil
end
end
end
end
end