2019-12-24 07:08:01 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Status
|
|
|
|
class WaitingForResource < Status::Core
|
|
|
|
def text
|
|
|
|
s_('CiStatusText|waiting')
|
|
|
|
end
|
|
|
|
|
|
|
|
def label
|
|
|
|
s_('CiStatusLabel|waiting for resource')
|
|
|
|
end
|
|
|
|
|
|
|
|
def icon
|
|
|
|
'status_pending'
|
|
|
|
end
|
|
|
|
|
|
|
|
def favicon
|
|
|
|
'favicon_pending'
|
|
|
|
end
|
|
|
|
|
|
|
|
def group
|
|
|
|
'waiting-for-resource'
|
|
|
|
end
|
2020-10-13 11:08:53 -04:00
|
|
|
|
|
|
|
def details_path
|
|
|
|
nil
|
|
|
|
end
|
2019-12-24 07:08:01 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|