1 Vcffarm::Application.routes.draw do
5 resources :factory_jobs
8 resources :uploaded_datasets
20 resources :pipeline_invocations
26 resources :collections
28 root :to => 'factory_jobs#index'
30 # Send unroutable requests to an arbitrary controller
31 # (ends up at ApplicationController#render_not_found)
32 match '*a', :to => 'metadata#render_not_found'
35 # The priority is based upon order of creation:
36 # first created -> highest priority.
38 # Sample of regular route:
39 # match 'products/:id' => 'catalog#view'
40 # Keep in mind you can assign values other than :controller and :action
42 # Sample of named route:
43 # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
44 # This route can be invoked with purchase_url(:id => product.id)
46 # Sample resource route (maps HTTP verbs to controller actions automatically):
49 # Sample resource route with options:
50 # resources :products do
61 # Sample resource route with sub-resources:
62 # resources :products do
63 # resources :comments, :sales
67 # Sample resource route with more complex sub-resources
68 # resources :products do
71 # get 'recent', :on => :collection
75 # Sample resource route within a namespace:
77 # # Directs /admin/products/* to Admin::ProductsController
78 # # (app/controllers/admin/products_controller.rb)
82 # You can have the root of your site routed with "root"
83 # just remember to delete public/index.html.
84 # root :to => 'welcome#index'
86 # See how all your routes lay out with "rake routes"
88 # This is a legacy wild controller route that's not recommended for RESTful applications.
89 # Note: This route will make all actions in every controller accessible via GET requests.
90 # match ':controller(/:action(/:id))(.:format)'