debian-mirror-gitlab/config/routes/ci.rb

10 lines
166 B
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
namespace :ci do
# CI API
Ci::API::API.logger Rails.logger
mount Ci::API::API => '/api'
resource :lint, only: [:show, :create]
2017-08-17 22:00:37 +05:30
root to: redirect('/')
2016-11-03 12:29:30 +05:30
end