1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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