This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-08-18 06:49:51 -07:00
|
|
|
module ApplicationCable
|
|
|
|
class Connection < ActionCable::Connection::Base
|
|
|
|
identified_by :current_user
|
|
|
|
|
|
|
|
def connect
|
|
|
|
self.current_user = find_verified_user
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def find_verified_user
|
2016-09-12 09:22:43 -07:00
|
|
|
verified_user = env['warden'].user
|
|
|
|
|
|
|
|
if verified_user
|
2016-08-18 06:49:51 -07:00
|
|
|
verified_user
|
|
|
|
else
|
|
|
|
reject_unauthorized_connection
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|