debian-mirror-gitlab/lib/gitlab/ci/status/scheduled.rb

30 lines
456 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-12-05 23:21:45 +05:30
module Gitlab
module Ci
module Status
class Scheduled < Status::Core
def text
2018-12-13 13:39:08 +05:30
s_('CiStatusText|delayed')
2018-12-05 23:21:45 +05:30
end
def label
2018-12-13 13:39:08 +05:30
s_('CiStatusLabel|delayed')
2018-12-05 23:21:45 +05:30
end
def icon
'status_scheduled'
end
def favicon
'favicon_status_scheduled'
end
2021-01-03 14:25:43 +05:30
def details_path
nil
end
2018-12-05 23:21:45 +05:30
end
end
end
end