mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
14 lines
346 B
Ruby
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
|