diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-03-15 14:09:30 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-03-15 14:09:30 +0530 |
commit | 4fb5a92983bb0b88442b33757bb1e2cdfc49ef00 (patch) | |
tree | dcd583c741f5db2f4e426d6e34a5db6c598aef83 | |
parent | f735d4103869347329bb3dc38c44519ff28b9cb6 (diff) | |
parent | 3c688c737bb08774104d13b3b89f3a25eb3cd440 (diff) | |
download | rails-4fb5a92983bb0b88442b33757bb1e2cdfc49ef00.tar.gz rails-4fb5a92983bb0b88442b33757bb1e2cdfc49ef00.tar.bz2 rails-4fb5a92983bb0b88442b33757bb1e2cdfc49ef00.zip |
Merge pull request #24204 from sand33pn/master
Update action_controller_overview.md
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 9ef2c1a441..8997363fce 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -700,7 +700,7 @@ class LoginsController < ApplicationController end ``` -Now, the `LoginsController`'s `new` and `create` actions will work as before without requiring the user to be logged in. The `:only` option is used to only skip this filter for these actions, and there is also an `:except` option which works the other way. These options can be used when adding filters too, so you can add a filter which only runs for selected actions in the first place. +Now, the `LoginsController`'s `new` and `create` actions will work as before without requiring the user to be logged in. The `:only` option is used to skip this filter only for these actions, and there is also an `:except` option which works the other way. These options can be used when adding filters too, so you can add a filter which only runs for selected actions in the first place. ### After Filters and Around Filters |