dawarich/app/channels/imports_channel.rb
2024-11-04 13:06:04 +01:00

7 lines
135 B
Ruby

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