aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2015-06-21 21:08:20 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2015-06-21 21:08:20 +0200
commit81ae9ee32162ececbd70664b2821e7c636eaed8b (patch)
tree3776838ed43fb8f52b2b7b8443f563f79dad6322 /lib/action_cable/connection.rb
parentcc5ad6a65729a7c2c922e230c68b137762b8b127 (diff)
downloadrails-81ae9ee32162ececbd70664b2821e7c636eaed8b.tar.gz
rails-81ae9ee32162ececbd70664b2821e7c636eaed8b.tar.bz2
rails-81ae9ee32162ececbd70664b2821e7c636eaed8b.zip
Consolidate all identification logic in a single concern
Diffstat (limited to 'lib/action_cable/connection.rb')
-rw-r--r--lib/action_cable/connection.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/connection.rb b/lib/action_cable/connection.rb
index a9048926e4..8a695a3d0d 100644
--- a/lib/action_cable/connection.rb
+++ b/lib/action_cable/connection.rb
@@ -1,8 +1,8 @@
module ActionCable
module Connection
autoload :Base, 'action_cable/connection/base'
+ autoload :Identification, 'action_cable/connection/identification'
autoload :InternalChannel, 'action_cable/connection/internal_channel'
- autoload :Identifier, 'action_cable/connection/identifier'
autoload :TaggedLoggerProxy, 'action_cable/connection/tagged_logger_proxy'
end
end