1 ArvadosWorkbench::Application.routes.draw do
11 resources :api_client_authorizations
12 resources :repositories
13 resources :virtual_machines
14 resources :authorized_keys
17 match '/logout' => 'sessions#destroy'
18 match '/logged_out' => 'sessions#index'
20 get 'home', :on => :member
21 get 'welcome', :on => :collection
24 resources :factory_jobs
25 resources :uploaded_datasets
28 resources :pipeline_templates
29 resources :pipeline_instances
31 match '/collections/graph' => 'collections#graph'
32 resources :collections
33 root :to => 'users#welcome'
35 # Send unroutable requests to an arbitrary controller
36 # (ends up at ApplicationController#render_not_found)
37 match '*a', :to => 'links#render_not_found'