dawarich/app/channels/family_locations_channel.rb
Eugene Burmakin 7ee2cb22ba Small fixes
2025-10-22 20:39:02 +02:00

14 lines
346 B
Ruby

# frozen_string_literal: true
class FamilyLocationsChannel < ApplicationCable::Channel
def subscribed
return reject unless DawarichSettings.family_feature_enabled?
return reject unless current_user.in_family?
stream_for current_user.family
end
def unsubscribed
# Any cleanup needed when channel is unsubscribed
end
end