Log a banner at the top of each test.
[arvados.git] / services / api / config / routes.rb
index 2481d5aed5727073b16b5a045e7587ccadd87aea..c85a3fc57af20d2461516c384623a452a86dbdda 100644 (file)
@@ -28,6 +28,8 @@ Server::Application.routes.draw do
       end
       resources :humans
       resources :job_tasks
+      resources :containers
+      resources :container_requests
       resources :jobs do
         get 'queue', on: :collection
         get 'queue_size', on: :collection
@@ -78,6 +80,8 @@ Server::Application.routes.draw do
   # omniauth
   match '/auth/:provider/callback', :to => 'user_sessions#create'
   match '/auth/failure', :to => 'user_sessions#failure'
+  # not handled by omniauth provider -> 403 with no CORS headers.
+  get '/auth/*a', :to => 'user_sessions#cross_origin_forbidden'
 
   # Custom logout
   match '/login', :to => 'user_sessions#login'