2020-03-13 15:44:24 +05:30
|
|
|
# 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
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
def details_path
|
|
|
|
nil
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|