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

24 lines
335 B
Ruby
Raw Normal View History

module Gitlab
module Ci
module Status
class Success < Status::Core
def text
'passed'
end
def label
'passed'
end
def icon
'icon_status_success'
end
def favicon
2017-03-03 02:46:07 -05:00
'favicon_status_success'
end
end
end
end
end