User Session Authentication in Rails 5
问题 I am trying to implement notification using the action cable in Rails 5. After reading the tutorial for the Action cable, which work on the session & Cookies based Authentication to receive the notification for the current logged in user. module ApplicationCable class Connection < ActionCable::Connection::Base identified_by :current_user def connect self.current_user = find_verified_user logger.add_tags 'ActionCable', current_user.username end protected def find_verified_user if verified_user