X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d6aab18f9688d46bc1f86f021d68e02e5601cfe7..741a9b3912c382b25507ca76fae15ddac020f302:/apps/workbench/config/routes.rb diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index 0d5b8fca83..badb471d64 100644 --- a/apps/workbench/config/routes.rb +++ b/apps/workbench/config/routes.rb @@ -87,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) @@ -107,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'