summaryrefslogtreecommitdiff
path: root/app/channels
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-19 22:53:38 -0400
committerDavid Gay <david@davidgay.org>2021-05-19 22:53:38 -0400
commit9415011b5fd192f1bafeaa9b6eacbb7921382a00 (patch)
treef25d9d633237cae5d7b73166e6612a9b53312714 /app/channels
parentda678b22b5db05554b44234b341fabc9d83ff700 (diff)
Chat
Diffstat (limited to 'app/channels')
-rw-r--r--app/channels/chat_room_channel.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/channels/chat_room_channel.rb b/app/channels/chat_room_channel.rb
new file mode 100644
index 0000000..1e14b35
--- /dev/null
+++ b/app/channels/chat_room_channel.rb
@@ -0,0 +1,17 @@
+class ChatRoomChannel < ApplicationCable::Channel
+ def self.broadcast_chat_message(chat_message)
+ ActionCable.server.broadcast "chat_room_channel",
+ html: ApplicationController.render(partial: "chat_messages/message",
+ locals: {
+ chat: chat_message
+ })
+ end
+
+ def subscribed
+ stream_from "chat_room_channel"
+ end
+
+ def unsubscribed
+ # Any cleanup needed when channel is unsubscribed
+ end
+end