mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 00:59:15 +02:00
8 lines
223 B
Python
8 lines
223 B
Python
from funkwhale_api.common.consumers import JsonAuthConsumer
|
|
|
|
|
|
class InstanceActivityConsumer(JsonAuthConsumer):
|
|
groups = ["instance_activity"]
|
|
|
|
def event_send(self, message):
|
|
self.send_json(message["data"])
|