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

30 lines
450 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Ci
module Status
class Created < Status::Core
def text
2017-06-07 20:13:44 +00:00
s_('CiStatusText|created')
end
def label
2017-06-07 20:13:44 +00:00
s_('CiStatusLabel|created')
end
def icon
2017-10-02 08:40:32 +00:00
'status_created'
end
def favicon
2017-03-03 07:46:07 +00:00
'favicon_status_created'
end
def details_path
nil
end
end
end
end
end