What are the paths that is automatically added by Rails? Let say you have a Question resource you automatically get questions_path, question_path etc. Where do I see what they resolve to and what I get?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
This section might be helpful http://guides.rubyonrails.org/routing.html#specifying-a-controller-to-use
If you want to create a helper for
where
You can also load |
||||
|
|
|
Just use:
This will list all routes defined. The first column is relevant for you path helpers. |
|||||||
|
|
If you have the following in your routes file:
Then Rails provides the following restful routes for you:
You can also run rake:routes to see what is being generated. |
||||
|
|