dawarich/app/channels/points_channel.rb

8 lines
134 B
Ruby
Raw Permalink Normal View History

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