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

23 lines
373 B
Ruby

module Gitlab
module Ci
module Status
class Scheduled < Status::Core
def text
s_('CiStatusText|delayed')
end
def label
s_('CiStatusLabel|delayed')
end
def icon
'status_scheduled'
end
def favicon
'favicon_status_scheduled'
end
end
end
end
end