dawarich/app/channels/notifications_channel.rb

7 lines
141 B
Ruby

# frozen_string_literal: true
class NotificationsChannel < ApplicationCable::Channel
def subscribed
stream_for current_user
end
end