X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3bd5f6c3f353059c15eeea51b16b2fdee694d504..d687fed365e545dea1c9283e917e05bb2a4ed07c:/apps/workbench/config/routes.rb?ds=sidebyside diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index cac3431667..383d4421e2 100644 --- a/apps/workbench/config/routes.rb +++ b/apps/workbench/config/routes.rb @@ -2,8 +2,9 @@ ArvadosWorkbench::Application.routes.draw do themes_for_rails resources :keep_disks + resources :keep_services resources :user_agreements do - put 'sign', on: :collection + post 'sign', on: :collection get 'signatures', on: :collection end get '/user_agreements/signatures' => 'user_agreements#signatures' @@ -17,9 +18,11 @@ ArvadosWorkbench::Application.routes.draw do resources :virtual_machines resources :authorized_keys resources :job_tasks - resources :jobs - match '/logout' => 'sessions#destroy' - match '/logged_out' => 'sessions#index' + resources :jobs do + post 'cancel', :on => :member + end + match '/logout' => 'sessions#destroy', via: [:get, :post] + get '/logged_out' => 'sessions#index' resources :users do get 'home', :on => :member get 'welcome', :on => :collection @@ -39,11 +42,21 @@ ArvadosWorkbench::Application.routes.draw do get 'compare', on: :collection end resources :links - match '/collections/graph' => 'collections#graph' + get '/collections/graph' => 'collections#graph' resources :collections do post 'set_persistent', on: :member + get 'sharing_popup', :on => :member + post 'share', :on => :member + post 'unshare', :on => :member end + get('/collections/download/:uuid/:reader_token/*file' => 'collections#show_file', + format: false) + get '/collections/download/:uuid/:reader_token' => 'collections#show_file_links' get '/collections/:uuid/*file' => 'collections#show_file', :format => false + resources :folders do + match 'remove/:item_uuid', on: :member, via: :delete, action: :remove_item + get 'choose', on: :collection + end post 'actions' => 'actions#post' get 'websockets' => 'websocket#index' @@ -52,5 +65,5 @@ ArvadosWorkbench::Application.routes.draw do # Send unroutable requests to an arbitrary controller # (ends up at ApplicationController#render_not_found) - match '*a', :to => 'links#render_not_found' + match '*a', to: 'links#render_not_found', via: [:get, :post] end