X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d6aab18f9688d46bc1f86f021d68e02e5601cfe7..aee74220328be12113ea597e593b4ab6f120aeac:/apps/workbench/config/routes.rb diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index 0d5b8fca83..5bd484956f 100644 --- a/apps/workbench/config/routes.rb +++ b/apps/workbench/config/routes.rb @@ -87,6 +87,9 @@ ArvadosWorkbench::Application.routes.draw do post 'share', :on => :member post 'unshare', :on => :member get 'choose', on: :collection + post 'remove_selected_files', on: :member + post 'tags', on: :member + post 'save_tags', on: :member end get('/collections/download/:uuid/:reader_token/*file' => 'collections#show_file', format: false) @@ -107,6 +110,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'