X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/99658f9ca22500e6249a77bae32994599949c76d..9fd66e55e8e5f157ad47203006dcfcc150812559:/services/api/config/routes.rb diff --git a/services/api/config/routes.rb b/services/api/config/routes.rb index b6132c162d..ebb5c69271 100644 --- a/services/api/config/routes.rb +++ b/services/api/config/routes.rb @@ -1,4 +1,6 @@ Server::Application.routes.draw do + resources :humans + resources :traits resources :repositories resources :virtual_machines resources :authorized_keys @@ -84,7 +86,10 @@ Server::Application.routes.draw do match '/users/current' => 'users#current' match '/users/system' => 'users#system' match '/jobs/queue' => 'jobs#queue' + match '/jobs/:uuid/log_tail_follow' => 'jobs#log_tail_follow' 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' resources :collections resources :links @@ -103,6 +108,8 @@ Server::Application.routes.draw do resources :authorized_keys resources :virtual_machines resources :repositories + resources :traits + resources :humans end end