X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/965565ddc62635928a6b043158fd683738961c8c..741a9b3912c382b25507ca76fae15ddac020f302:/apps/workbench/config/routes.rb diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index 21cb7c40bc..badb471d64 100644 --- a/apps/workbench/config/routes.rb +++ b/apps/workbench/config/routes.rb @@ -75,6 +75,7 @@ ArvadosWorkbench::Application.routes.draw do get 'choose', on: :collection end resources :pipeline_instances do + post 'cancel', :on => :member get 'compare', on: :collection post 'copy', on: :member end @@ -86,6 +87,7 @@ ArvadosWorkbench::Application.routes.draw do post 'share', :on => :member post 'unshare', :on => :member get 'choose', on: :collection + post 'remove_selected_files', on: :member end get('/collections/download/:uuid/:reader_token/*file' => 'collections#show_file', format: false) @@ -106,6 +108,11 @@ ArvadosWorkbench::Application.routes.draw do resources :workflows + get "trash" => 'trash_items#index', :as => :trash + resources :trash_items do + post 'untrash_items', on: :collection + end + post 'actions' => 'actions#post' get 'actions' => 'actions#show' get 'websockets' => 'websocket#index'