diff options
author | Cody Robbins <cody@codyrobbins.com> | 2013-06-07 18:32:50 -0400 |
---|---|---|
committer | Cody Robbins <cody@codyrobbins.com> | 2013-06-07 18:32:50 -0400 |
commit | d1c0d9b15533f0d990fb4095dc3d5598db1d832e (patch) | |
tree | 1c64f6e2543c8f100e7762eb6118db5fbe23e34d /guides/source | |
parent | f1d453b4fd3697c9b5bd9b130d4fd7cce6a776ad (diff) | |
download | rails-d1c0d9b15533f0d990fb4095dc3d5598db1d832e.tar.gz rails-d1c0d9b15533f0d990fb4095dc3d5598db1d832e.tar.bz2 rails-d1c0d9b15533f0d990fb4095dc3d5598db1d832e.zip |
Added a warning about #1769 to the routing guide.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/routing.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index 076b9dd176..c6d3b2a58a 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -171,6 +171,12 @@ A singular resourceful route generates these helpers: As with plural resources, the same helpers ending in `_url` will also include the host, port and path prefix. +WARNING: A [long-standing bug](https://github.com/rails/rails/issues/1769) prevents `form_for` from working automatically with singular resources. As a workaround, specify the URL for the form directly, like so: + +``` +form_for @geocoder, url: geocoder_path do |f| +``` + ### Controller Namespaces and Routing You may wish to organize groups of controllers under a namespace. Most commonly, you might group a number of administrative controllers under an `Admin::` namespace. You would place these controllers under the `app/controllers/admin` directory, and you can group them together in your router: |