DEV Community

Discussion on: Simple Rails 6 Chat application with Action Cable

Collapse
 
cmitz profile image
Casper Smits

By the way, you also got a typo in the room_channel.rb:

 def subscribed
  - stream from "room_channel"
  + stream_from "room_channel"
 end