-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chat feature #8
base: master
Are you sure you want to change the base?
Chat feature #8
Conversation
app/channels/poll_channel.rb
Outdated
class PollChannel < ApplicationCable::Channel | ||
|
||
def subscribed | ||
stream_from "poll_channel" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't differentiate between poll channels here. All your poll chats will have the same channel for messaging. You should be using poll ID to differentiate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a simple chat functional, i'm trying to understand how it works, and how js works with rails.
No description provided.