use ORVOS_API_TOKEN environment variable in rails console
[arvados.git] / config / routes.rb
index 6144b43d0d649d3fad363aeaef66c74b7c5893f8..b927bd88d72fd5c0ccad69e232737f1145cef3cb 100644 (file)
@@ -1,15 +1,51 @@
 Vcffarm::Application.routes.draw do
-  resources :pipelines
+  resources :job_tasks
 
 
-  resources :pipeline_invocations
+  resources :jobs
 
 
-  resources :metadata
+  match '/logout' => 'sessions#destroy'
+  match '/logged_out' => 'sessions#index'
 
 
+  resources :users
+
+
+  resources :logs
+
+
+  resources :factory_jobs
+  match '/factory_jobs/reset_pipeline_instance/:uuid' => 'factory_jobs#reset_pipeline_instance', :as => 'reset_pipeline_instance', :via => 'POST'
+
+
+  resources :uploaded_datasets
+
+
+  resources :groups
+
+
+  resources :specimens
+
+
+  resources :pipeline_templates
+
+
+  resources :pipeline_instances
+
+
+  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.