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

24 lines
377 B
Ruby
Raw Normal View History

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