Merge remote branch 'public2/master' into hw2_start
[slick.rotten.hw2.git] / config / routes.rb
blob18a27b40dbc1f5ed7b36eefbc8b87e29ae5bb727
1 Rottenpotatoes::Application.routes.draw do
2   # The priority is based upon order of creation:
3   # first created -> highest priority.
5   # Sample of regular route:
6   #   match 'products/:id' => 'catalog#view'
7   # Keep in mind you can assign values other than :controller and :action
9   # Sample of named route:
10   #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11   # This route can be invoked with purchase_url(:id => product.id)
13   # Sample resource route (maps HTTP verbs to controller actions automatically):
14   #   resources :products
15   resources :movies
17   # Sample resource route with options:
18   #   resources :products do
19   #     member do
20   #       get 'short'
21   #       post 'toggle'
22   #     end
23   #
24   #     collection do
25   #       get 'sold'
26   #     end
27   #   end
29   # Sample resource route with sub-resources:
30   #   resources :products do
31   #     resources :comments, :sales
32   #     resource :seller
33   #   end
35   # Sample resource route with more complex sub-resources
36   #   resources :products do
37   #     resources :comments
38   #     resources :sales do
39   #       get 'recent', :on => :collection
40   #     end
41   #   end
43   # Sample resource route within a namespace:
44   #   namespace :admin do
45   #     # Directs /admin/products/* to Admin::ProductsController
46   #     # (app/controllers/admin/products_controller.rb)
47   #     resources :products
48   #   end
50   # You can have the root of your site routed with "root"
51   # just remember to delete public/index.html.
52   # root :to => 'welcome#index'
54   # See how all your routes lay out with "rake routes"
56   # This is a legacy wild controller route that's not recommended for RESTful applications.
57   # Note: This route will make all actions in every controller accessible via GET requests.
58   # match ':controller(/:action(/:id(.:format)))'
59 end