diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-16 20:33:32 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-16 20:36:11 +0100 |
commit | bf16ec25b30ae501c3ca849b05ae8ad132a45f96 (patch) | |
tree | 0c593faeff3041aaa507e62e6af4554cec530be4 /actioncable | |
parent | c0b901e7912f10400c2e14109e66eba4056b398a (diff) | |
download | rails-bf16ec25b30ae501c3ca849b05ae8ad132a45f96.tar.gz rails-bf16ec25b30ae501c3ca849b05ae8ad132a45f96.tar.bz2 rails-bf16ec25b30ae501c3ca849b05ae8ad132a45f96.zip |
Comment out the user handling so default setup connects directly
Diffstat (limited to 'actioncable')
-rw-r--r-- | actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb b/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb index 5aab33eb33..2d1e38c572 100644 --- a/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb +++ b/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb @@ -1,23 +1,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 + # 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 |