mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Add mention of nested resource to resources documentation
This commit is contained in:
@@ -968,6 +968,21 @@ module ActionDispatch
|
||||
# PUT /photos/:id
|
||||
# DELETE /photos/:id
|
||||
#
|
||||
# Resources can also be nested infinitely by using this block syntax:
|
||||
#
|
||||
# resources :photos do
|
||||
# resources :comments
|
||||
# end
|
||||
#
|
||||
# This generates the following comments routes:
|
||||
#
|
||||
# GET /photos/:id/comments/new
|
||||
# POST /photos/:id/comments
|
||||
# GET /photos/:id/comments/:id
|
||||
# GET /photos/:id/comments/:id/edit
|
||||
# PUT /photos/:id/comments/:id
|
||||
# DELETE /photos/:id/comments/:id
|
||||
#
|
||||
# === Supported options
|
||||
# [:path_names]
|
||||
# Allows you to change the paths of the seven default actions.
|
||||
|
||||
Reference in New Issue
Block a user