提交 720a6979 编写于 作者: K Kasper Timm Hansen 提交者: GitHub

Merge pull request #28571 from y-yagi/rename_local_current_user_to_verified_user_guide

Rename local variable name `current_user` to `verified_user` [ci skip]
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册