X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/420949e37a2903ab87f64f57278dfdc6a261a7f3..8191d7365a61f4d4309c2f0b387188303320a889:/apps/workbench/config/routes.rb diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index 4fb6578fd3..b4da656bc3 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' @@ -18,8 +19,8 @@ ArvadosWorkbench::Application.routes.draw do resources :authorized_keys resources :job_tasks resources :jobs - match '/logout' => 'sessions#destroy' - match '/logged_out' => 'sessions#index' + match '/logout' => 'sessions#destroy', via: [:get, :post] + get '/logged_out' => 'sessions#index' resources :users do get 'home', :on => :member get 'welcome', :on => :collection @@ -39,16 +40,28 @@ ArvadosWorkbench::Application.routes.draw do get 'compare', on: :collection end resources :links - match '/collections/graph' => 'collections#graph' - resources :collections + 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, controller: :groups, group_class: 'folder' + 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' root :to => 'users#welcome' # 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