Rename local variable name `current_user` to `verified_user` [ci skip]

Related #28570
This commit is contained in:
yuuji.yaginuma 2017-03-25 20:57:40 +09:00
parent 22b47b3b6b
commit c096262f61
1 changed files with 3 additions and 3 deletions

View File

@ -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