debian-mirror-gitlab/lib/gitlab/ci/status/success.rb
2018-12-13 13:39:08 +05:30

26 lines
396 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Status
class Success < Status::Core
def text
s_('CiStatusText|passed')
end
def label
s_('CiStatusLabel|passed')
end
def icon
'status_success'
end
def favicon
'favicon_status_success'
end
end
end
end
end