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

24 lines
337 B
Ruby
Raw Normal View History

module Gitlab
module Ci
module Status
class Created < Status::Core
def text
'created'
end
def label
'created'
end
def icon
'icon_status_created'
end
def favicon
2017-03-03 02:46:07 -05:00
'favicon_status_created'
end
end
end
end
end