chinwagsocial/app/channels/application_cable/connection.rb

23 lines
429 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-18 23:49:51 +10: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-10-04 04:19:03 +11:00
catch :warden do
verified_user = env['warden'].user
return verified_user if verified_user
2016-08-18 23:49:51 +10:00
end
2016-10-04 04:19:03 +11:00
2016-10-04 04:10:56 +11:00
reject_unauthorized_connection
2016-08-18 23:49:51 +10:00
end
end
end