aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.md
diff options
context:
space:
mode:
authorCody Robbins <cody@codyrobbins.com>2013-06-07 18:32:50 -0400
committerCody Robbins <cody@codyrobbins.com>2013-06-07 18:32:50 -0400
commitd1c0d9b15533f0d990fb4095dc3d5598db1d832e (patch)
tree1c64f6e2543c8f100e7762eb6118db5fbe23e34d /guides/source/routing.md
parentf1d453b4fd3697c9b5bd9b130d4fd7cce6a776ad (diff)
downloadrails-d1c0d9b15533f0d990fb4095dc3d5598db1d832e.tar.gz
rails-d1c0d9b15533f0d990fb4095dc3d5598db1d832e.tar.bz2
rails-d1c0d9b15533f0d990fb4095dc3d5598db1d832e.zip
Added a warning about #1769 to the routing guide.
Diffstat (limited to 'guides/source/routing.md')
-rw-r--r--guides/source/routing.md6
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: