aboutsummaryrefslogblamecommitdiffstats
path: root/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb
blob: 2d1e38c5728b0bfc2ac7d8c3bc7f82f44afa3a40 (plain) (tree)
1
2
3
                                                                                                                                           

                                                  

















                                                     

     
# 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