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

30 lines
456 B
Ruby

# frozen_string_literal: true
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
def details_path
nil
end
end
end
end
end