app/channels/application_cable/connection.rb
# frozen_string_literal: true
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
User.find_by(id: request.session[:user_id]) || reject_unauthorized_connection
end
end
end