diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-10-14 03:08:08 -0700 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-10-14 03:08:08 -0700 |
commit | e2a3952428050ea8a22c6a7de27f30ee0b9b1d4d (patch) | |
tree | 2373cfda0ef4a9e624163c26ca159e1780105845 /railties/guides | |
parent | 6df79bf580cf9a0464fce948c212bd117c378cc9 (diff) | |
parent | dadfa1e34f3ffbc2de98eae88b9715c41f4a1b66 (diff) | |
download | rails-e2a3952428050ea8a22c6a7de27f30ee0b9b1d4d.tar.gz rails-e2a3952428050ea8a22c6a7de27f30ee0b9b1d4d.tar.bz2 rails-e2a3952428050ea8a22c6a7de27f30ee0b9b1d4d.zip |
Merge pull request #72 from pote/master
small fix
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/action_controller_overview.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_controller_overview.textile b/railties/guides/source/action_controller_overview.textile index d8d66302fe..5019d49686 100644 --- a/railties/guides/source/action_controller_overview.textile +++ b/railties/guides/source/action_controller_overview.textile @@ -796,7 +796,7 @@ NOTE: Certain exceptions are only rescuable from the +ApplicationController+ cla h3. Force HTTPS protocol -Sometime you might want to force a particular controller to only be accessible via an HTTPS protocol for security reason. Since Rails 3.1 you can now use +force_ssl+ method in your controller to enforce that: +Sometime you might want to force a particular controller to only be accessible via an HTTPS protocol for security reasons. Since Rails 3.1 you can now use +force_ssl+ method in your controller to enforce that: <ruby> class DinnerController |