debian-mirror-gitlab/lib/gitlab/ci/status/created.rb
2018-12-13 13:39:08 +05:30

26 lines
398 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Status
class Created < Status::Core
def text
s_('CiStatusText|created')
end
def label
s_('CiStatusLabel|created')
end
def icon
'status_created'
end
def favicon
'favicon_status_created'
end
end
end
end
end