Use the renamed components_look_ready? method during migration.
[arvados.git] / services / api / config / routes.rb
index f50ae5a69b38ae5e0524c6c1e926e6908248386d..211701a05455edc6e3b05d03bd0823137247acec 100644 (file)
@@ -1,4 +1,7 @@
 Server::Application.routes.draw do
+  themes_for_rails
+
+  resources :humans
   resources :traits
   resources :repositories
   resources :virtual_machines
@@ -78,7 +81,6 @@ Server::Application.routes.draw do
 
   namespace :arvados do
     namespace :v1 do
-      match '/schema' => 'schema#show'
       match '/nodes/:uuid/ping' => 'nodes#ping', :as => :ping_node
       match '/keep_disks/ping' => 'keep_disks#ping', :as => :ping_keep_disk
       match '/links/from/:tail_uuid' => 'links#index', :as => :arvados_v1_links_from
@@ -86,8 +88,19 @@ Server::Application.routes.draw do
       match '/users/system' => 'users#system'
       match '/jobs/queue' => 'jobs#queue'
       match '/jobs/:uuid/log_tail_follow' => 'jobs#log_tail_follow'
+      post '/jobs/:uuid/cancel' => 'jobs#cancel'
+      match '/users/:uuid/event_stream' => 'users#event_stream'
+      post '/users/:uuid/activate' => 'users#activate'
+      post '/users/setup' => 'users#setup'
+      post '/users/:uuid/unsetup' => 'users#unsetup'
       match '/virtual_machines/get_all_logins' => 'virtual_machines#get_all_logins'
+      match '/virtual_machines/:uuid/logins' => 'virtual_machines#logins'
+      post '/api_client_authorizations/create_system_auth' => 'api_client_authorizations#create_system_auth'
       match '/repositories/get_all_permissions' => 'repositories#get_all_permissions'
+      get '/user_agreements/signatures' => 'user_agreements#signatures'
+      post '/user_agreements/sign' => 'user_agreements#sign'
+      get '/collections/:uuid/provenance' => 'collections#provenance'
+      get '/collections/:uuid/used_by' => 'collections#used_by'
       resources :collections
       resources :links
       resources :nodes
@@ -106,6 +119,8 @@ Server::Application.routes.draw do
       resources :virtual_machines
       resources :repositories
       resources :traits
+      resources :humans
+      resources :user_agreements
     end
   end
 
@@ -117,7 +132,9 @@ Server::Application.routes.draw do
   match '/login', :to => 'user_sessions#login'
   match '/logout', :to => 'user_sessions#logout'
 
-  match '/discovery/v1/apis/arvados/v1/rest', :to => 'arvados/v1/schema#discovery_rest_description'
+  match '/discovery/v1/apis/arvados/v1/rest', :to => 'arvados/v1/schema#index'
+
+  match '/static/login_failure', :to => 'static#login_failure', :as => :login_failure
 
   # Send unroutable requests to an arbitrary controller
   # (ends up at ApplicationController#render_not_found)