X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/43c411ec1441ee1710dc33389d7451f7414a170f..9fd66e55e8e5f157ad47203006dcfcc150812559:/services/api/config/routes.rb diff --git a/services/api/config/routes.rb b/services/api/config/routes.rb index 67f6a24646..ebb5c69271 100644 --- a/services/api/config/routes.rb +++ b/services/api/config/routes.rb @@ -1,8 +1,12 @@ Server::Application.routes.draw do + resources :humans + resources :traits + resources :repositories + resources :virtual_machines + resources :authorized_keys + resources :keep_disks resources :commit_ancestors - resources :commits - resources :job_tasks resources :jobs resources :api_client_authorizations @@ -77,8 +81,16 @@ Server::Application.routes.draw 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 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 resources :nodes @@ -88,8 +100,16 @@ Server::Application.routes.draw do resources :groups resources :logs resources :users + resources :api_clients + resources :api_client_authorizations resources :jobs resources :job_tasks + resources :keep_disks + resources :authorized_keys + resources :virtual_machines + resources :repositories + resources :traits + resources :humans end end