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

24 lines
337 B
Ruby
Raw Normal View History

module Gitlab
module Ci
module Status
class Skipped < Status::Core
def text
'skipped'
end
def label
'skipped'
end
def icon
'icon_status_skipped'
end
def favicon
2017-03-03 02:46:07 -05:00
'favicon_status_skipped'
end
end
end
end
end