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

30 lines
450 B
Ruby
Raw Normal View History

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