aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/action_cable/connection.rb')
-rw-r--r--lib/action_cable/connection.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/action_cable/connection.rb b/lib/action_cable/connection.rb
index a9048926e4..1b4a6ecc23 100644
--- a/lib/action_cable/connection.rb
+++ b/lib/action_cable/connection.rb
@@ -1,8 +1,12 @@
module ActionCable
module Connection
autoload :Base, 'action_cable/connection/base'
+ autoload :Heartbeat, 'action_cable/connection/heartbeat'
+ autoload :Identification, 'action_cable/connection/identification'
autoload :InternalChannel, 'action_cable/connection/internal_channel'
- autoload :Identifier, 'action_cable/connection/identifier'
+ autoload :MessageBuffer, 'action_cable/connection/message_buffer'
+ autoload :WebSocket, 'action_cable/connection/web_socket'
+ autoload :Subscriptions, 'action_cable/connection/subscriptions'
autoload :TaggedLoggerProxy, 'action_cable/connection/tagged_logger_proxy'
end
end