kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
17 wiersze
507 B
Python
17 wiersze
507 B
Python
from funkwhale_api.activity import record
|
|
from funkwhale_api.common import channels
|
|
|
|
from . import serializers
|
|
|
|
record.registry.register_serializer(serializers.TrackFavoriteActivitySerializer)
|
|
|
|
|
|
@record.registry.register_consumer("favorites.TrackFavorite")
|
|
def broadcast_track_favorite_to_instance_activity(data, obj):
|
|
if obj.user.privacy_level not in ["instance", "everyone"]:
|
|
return
|
|
|
|
channels.group_send(
|
|
"instance_activity", {"type": "event.send", "text": "", "data": data}
|
|
)
|