diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-03-25 20:57:40 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-03-25 20:57:40 +0900 |
commit | c096262f614a0c307f89691e9b8e976b3be3f89f (patch) | |
tree | c8a87dfa93a41d9370df1d5192fc518521ab61ac | |
parent | 22b47b3b6b5538cb8e348668dd1efe0ffd716ffa (diff) | |
download | rails-c096262f614a0c307f89691e9b8e976b3be3f89f.tar.gz rails-c096262f614a0c307f89691e9b8e976b3be3f89f.tar.bz2 rails-c096262f614a0c307f89691e9b8e976b3be3f89f.zip |
Rename local variable name `current_user` to `verified_user` [ci skip]
Related #28570
-rw-r--r-- | guides/source/action_cable_overview.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md index e929945dd0..50a28571b4 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -6,7 +6,7 @@ incorporate real-time features into your Rails application. After reading this guide, you will know: -* What Action Cable is and its integration on backend and frontend +* What Action Cable is and its integration on backend and frontend * How to setup Action Cable * How to setup channels * Deployment and Architecture setup for running Action Cable @@ -64,8 +64,8 @@ module ApplicationCable private def find_verified_user - if current_user = User.find_by(id: cookies.signed[:user_id]) - current_user + if verified_user = User.find_by(id: cookies.signed[:user_id]) + verified_user else reject_unauthorized_connection end |