Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci.rb « routes « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d23aa8fbf62a982ad5f84bd5b6cc82a7ebc17b0 (plain)
1
2
3
4
5
6
7
8
9
namespace :ci do
  # CI API
  Ci::API::API.logger Rails.logger
  mount Ci::API::API => '/api'

  resource :lint, only: [:show, :create]

  root to: redirect('/')
end