Tag rails
11 votes
6 comments
4612 views
Restrict auto-generated routes.
By default, Rails generates seven RESTful routes(new,edit,create,destroy,index,show, update) for a resource, sometime the resource only needs one or two routes, so just user :only or :except while defining routes to speedup the routing.
implemented