dawarich/app/channels/imports_channel.rb

8 lines
135 B
Ruby
Raw Normal View History

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