X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c7a21e6294f1eb905ace3d717f9dcfb4d4c39f0b..d3be53db90fc31f13a477056b48a39dfa351ef5e:/apps/workbench/config/routes.rb diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index 383d4421e2..26c38ffe13 100644 --- a/apps/workbench/config/routes.rb +++ b/apps/workbench/config/routes.rb @@ -10,6 +10,8 @@ ArvadosWorkbench::Application.routes.draw do get '/user_agreements/signatures' => 'user_agreements#signatures' get "users/setup_popup" => 'users#setup_popup', :as => :setup_user_popup get "users/setup" => 'users#setup', :as => :setup_user + get "actions/report_issue_popup" => 'actions#report_issue_popup', :as => :report_issue_popup + post "actions/report_issue" => 'actions#report_issue', :as => :report_issue resources :nodes resources :humans resources :traits @@ -24,22 +26,33 @@ ArvadosWorkbench::Application.routes.draw do match '/logout' => 'sessions#destroy', via: [:get, :post] get '/logged_out' => 'sessions#index' resources :users do + get 'choose', :on => :collection get 'home', :on => :member get 'welcome', :on => :collection + get 'inactive', :on => :collection get 'activity', :on => :collection get 'storage', :on => :collection post 'sudo', :on => :member post 'unsetup', :on => :member get 'setup_popup', :on => :member + get 'profile', :on => :member end + get '/manage_account' => 'users#manage_account' + get "/add_ssh_key_popup" => 'users#add_ssh_key_popup', :as => :add_ssh_key_popup + get "/add_ssh_key" => 'users#add_ssh_key', :as => :add_ssh_key resources :logs resources :factory_jobs resources :uploaded_datasets - resources :groups + resources :groups do + get 'choose', on: :collection + end resources :specimens - resources :pipeline_templates + resources :pipeline_templates do + get 'choose', on: :collection + end resources :pipeline_instances do get 'compare', on: :collection + post 'copy', on: :member end resources :links get '/collections/graph' => 'collections#graph' @@ -48,20 +61,28 @@ ArvadosWorkbench::Application.routes.draw do get 'sharing_popup', :on => :member post 'share', :on => :member post 'unshare', :on => :member + get 'choose', on: :collection 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 + resources :projects do match 'remove/:item_uuid', on: :member, via: :delete, action: :remove_item + match 'remove_items', on: :member, via: :delete, action: :remove_items + get 'move_items', on: :member, action: :move_items get 'choose', on: :collection + post 'share_with', on: :member + end + resources :search do + get 'choose', :on => :collection end post 'actions' => 'actions#post' + get 'actions' => 'actions#show' get 'websockets' => 'websocket#index' - root :to => 'users#welcome' + root :to => 'projects#index' # Send unroutable requests to an arbitrary controller # (ends up at ApplicationController#render_not_found)