blob: bbd142b287a25127004de3ef0cbc03f89521a96f (
plain) (
tree)
|
|
class SuccessAdapter < ActionCable::SubscriptionAdapter::Base
def broadcast(channel, payload)
end
def subscribe(channel, callback, success_callback = nil)
end
def unsubscribe(channel, callback)
end
end
|