5 lines
113 B
Ruby
5 lines
113 B
Ruby
|
class NotificationsChannel < ApplicationCable::Channel
|
||
|
def subscribed
|
||
|
stream_from 'notifications'
|
||
|
end
|
||
|
end
|