reorganize API helper a bit, refactor pipeline status page as /factory_jobs
[arvados.git] / config / routes.rb
1 Vcffarm::Application.routes.draw do
2   resources :factory_jobs
3
4
5   resources :uploaded_datasets
6
7
8   resources :projects
9
10
11   resources :specimens
12
13
14   resources :pipelines
15
16
17   resources :pipeline_invocations
18
19
20   resources :metadata
21
22
23   resources :collections
24
25
26   # The priority is based upon order of creation:
27   # first created -> highest priority.
28
29   # Sample of regular route:
30   #   match 'products/:id' => 'catalog#view'
31   # Keep in mind you can assign values other than :controller and :action
32
33   # Sample of named route:
34   #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
35   # This route can be invoked with purchase_url(:id => product.id)
36
37   # Sample resource route (maps HTTP verbs to controller actions automatically):
38   #   resources :products
39
40   # Sample resource route with options:
41   #   resources :products do
42   #     member do
43   #       get 'short'
44   #       post 'toggle'
45   #     end
46   #
47   #     collection do
48   #       get 'sold'
49   #     end
50   #   end
51
52   # Sample resource route with sub-resources:
53   #   resources :products do
54   #     resources :comments, :sales
55   #     resource :seller
56   #   end
57
58   # Sample resource route with more complex sub-resources
59   #   resources :products do
60   #     resources :comments
61   #     resources :sales do
62   #       get 'recent', :on => :collection
63   #     end
64   #   end
65
66   # Sample resource route within a namespace:
67   #   namespace :admin do
68   #     # Directs /admin/products/* to Admin::ProductsController
69   #     # (app/controllers/admin/products_controller.rb)
70   #     resources :products
71   #   end
72
73   # You can have the root of your site routed with "root"
74   # just remember to delete public/index.html.
75   # root :to => 'welcome#index'
76
77   # See how all your routes lay out with "rake routes"
78
79   # This is a legacy wild controller route that's not recommended for RESTful applications.
80   # Note: This route will make all actions in every controller accessible via GET requests.
81   # match ':controller(/:action(/:id))(.:format)'
82 end