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

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