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

30 lines
448 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
def details_path
nil
end
end
end
end
end