demarches-normaliennes/app/channels/notifications_channel.rb

6 lines
114 B
Ruby
Raw Normal View History

class NotificationsChannel < ApplicationCable::Channel
def subscribed
stream_from 'notifications'
end
2017-04-04 15:27:04 +02:00
end