diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:19:17 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:19:17 +1100 |
commit | f1406a905adc77ea719a6f3f85229d43a4766dc5 (patch) | |
tree | 19525cfbf2518cf383f9bb5b086e1e8725f0b739 /railties/guides/source | |
parent | 33298d8e38eab9ef2e528478fbd2d4585f732d82 (diff) | |
download | rails-f1406a905adc77ea719a6f3f85229d43a4766dc5.tar.gz rails-f1406a905adc77ea719a6f3f85229d43a4766dc5.tar.bz2 rails-f1406a905adc77ea719a6f3f85229d43a4766dc5.zip |
There is no config.action_controller.resource_path_names method for Rails 3
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 03a360f87f..b4dc223c71 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -125,8 +125,6 @@ WARNING: Threadsafe operation is incompatible with the normal workings of develo * +config.action_controller.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then used to log information from Action Controller. Set to nil to disable logging. -* +config.action_controller.resource_path_names+ is a hash of default names for several RESTful actions. By default, the new action is named +new+ and the edit action is named +edit+. - * +config.action_controller.request_forgery_protection_token+ sets the token parameter name for RequestForgery. Calling +protect_from_forgery+ sets it to +:authenticity_token+ by default. * +config.action_controller.optimise_named_routes+ turns on some optimizations in generating the routing table. It is set to +true+ by default. |