Update rails routes.
This commit is contained in:
parent
e70b296c78
commit
b72d65ddbd
|
@ -1,10 +1,5 @@
|
||||||
mapping
|
title: Rails Routes
|
||||||
-------------
|
---
|
||||||
|
|
||||||
[Guides/Routing](http://guides.rubyonrails.org/routing.html)
|
|
||||||
|
|
||||||
[ActionDispatch::Routing::Mapper](Rhttp://api.rubyonrails.org/classes/ActionDispatch/Routing/Mapper.html)
|
|
||||||
(See included modules)
|
|
||||||
|
|
||||||
### Multiple resources
|
### Multiple resources
|
||||||
|
|
||||||
|
@ -180,3 +175,11 @@ mapping
|
||||||
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
||||||
# Note: This route will make all actions in every controller accessible via GET requests.
|
# Note: This route will make all actions in every controller accessible via GET requests.
|
||||||
match ':controller(/:action(/:id(.:format)))'
|
match ':controller(/:action(/:id(.:format)))'
|
||||||
|
|
||||||
|
### References
|
||||||
|
|
||||||
|
* [Guides/Routing](http://guides.rubyonrails.org/routing.html)
|
||||||
|
|
||||||
|
* [ActionDispatch::Routing::Mapper](http://api.rubyonrails.org/classes/ActionDispatch/Routing/Mapper.html)
|
||||||
|
(See included modules)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue