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

24 lines
377 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
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