debian-mirror-gitlab/lib/gitlab/ci/status/success.rb

24 lines
335 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
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
'favicon_status_success'
end
end
end
end
end