DueWiz/Student_Organizer

View on GitHub
app/channels/latte_info_channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Be sure to restart your server when you modify this file. Action Cable runs in a loop that does not support auto reloading.
class LatteInfoChannel < ApplicationCable::Channel
  def subscribed
    stream_from "latte_info_#{current_user.id}"
  end

  def unsubscribed
    # Any cleanup needed when channel is unsubscribed
  end
end