From d1c0d9b15533f0d990fb4095dc3d5598db1d832e Mon Sep 17 00:00:00 2001 From: Cody Robbins Date: Fri, 7 Jun 2013 18:32:50 -0400 Subject: Added a warning about #1769 to the routing guide. --- guides/source/routing.md | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'guides/source/routing.md') 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: -- cgit v1.2.3