aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb
blob: 2d1e38c5728b0bfc2ac7d8c3bc7f82f44afa3a40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Be sure to restart your server when you modify this file. Action Cable runs in an EventMachine loop that does not support auto reloading.
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
    #     if current_user = authenticate_with_cookies
    #       current_user
    #     else
    #       reject_unauthorized_connection
    #     end
    #   end
    # 
    #   def authenticate_with_cookies
    #     User.find(cookies.signed[:user_id])
    #   end
  end
end