mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
12 lines
247 B
Ruby
12 lines
247 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SuccessAdapter < ActionCable::SubscriptionAdapter::Base
|
|
def broadcast(channel, payload)
|
|
end
|
|
|
|
def subscribe(channel, callback, success_callback = nil)
|
|
end
|
|
|
|
def unsubscribe(channel, callback)
|
|
end
|
|
end
|