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

24 lines
367 B
Ruby
Raw Normal View History

module Gitlab
module Ci
module Status
class Pending < Status::Core
def text
2017-06-07 16:13:44 -04:00
s_('CiStatusText|pending')
end
def label
2017-06-07 16:13:44 -04:00
s_('CiStatusLabel|pending')
end
def icon
2017-10-02 04:40:32 -04:00
'status_pending'
end
def favicon
2017-03-03 02:46:07 -05:00
'favicon_status_pending'
end
end
end
end
end