X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e8904ba111611e010d1451b63d53d69568e9c308..4cb8f822a179293d665605f6e5e4c0fc9a19a41f:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 92a58bdca3..2523d886ae 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,26 @@ Vcffarm::Application.routes.draw do + resources :job_steps + + + resources :jobs + + + match '/logout' => 'sessions#destroy' + match '/logged_out' => 'sessions#index' + + + resources :users + + + resources :logs + + + resources :factory_jobs + + + resources :uploaded_datasets + + resources :projects @@ -11,11 +33,18 @@ Vcffarm::Application.routes.draw do resources :pipeline_invocations - resources :metadata + resources :links + match '/collections/graph' => 'collections#graph' resources :collections + root :to => 'collections#index' + + # Send unroutable requests to an arbitrary controller + # (ends up at ApplicationController#render_not_found) + match '*a', :to => 'links#render_not_found' + # The priority is based upon order of creation: # first created -> highest priority.