diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2010-06-10 18:31:28 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-06-17 09:52:55 -0500 |
commit | 6db9558416cf2133adacbe1634f28c25bfe618d6 (patch) | |
tree | 409c18c238eaf50d9b0dad27d5bf837aed4819d2 /actionpack/CHANGELOG | |
parent | 7240a960f2e515316ac4d962482f678b67b83b8c (diff) | |
download | rails-6db9558416cf2133adacbe1634f28c25bfe618d6.tar.gz rails-6db9558416cf2133adacbe1634f28c25bfe618d6.tar.bz2 rails-6db9558416cf2133adacbe1634f28c25bfe618d6.zip |
Add shallow routing option to new router [#3765 status:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 967bd76025..cee79c6c11 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,15 @@ *Rails 3.0.0 [Release Candidate] (unreleased)* +* Add shallow routes back to the new router [Diego Carrion] + + resources :posts do + shallow do + resources :comments + end + end + + You can now use comment_path for /comments/1 instead of post_comment_path for /posts/1/comments/1. + * Add support for multi-subdomain session by setting cookie host in session cookie so you can share session between www.example.com, example.com and user.example.com. #4818 [Guillermo Álvarez] * Removed textilize, textilize_without_paragraph and markdown helpers. [Santiago Pastorino] |