diff options
Diffstat (limited to 'app/channels')
-rw-r--r-- | app/channels/chat_room_channel.rb | 17 |
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 |