mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 09:29:17 +02:00
16 lines
487 B
Python
16 lines
487 B
Python
from channels.routing import ProtocolTypeRouter, URLRouter
|
|
from django.conf.urls import url
|
|
|
|
from funkwhale_api.common.auth import TokenAuthMiddleware
|
|
from funkwhale_api.instance import consumers
|
|
|
|
application = ProtocolTypeRouter(
|
|
{
|
|
# Empty for now (http->django views is added by default)
|
|
"websocket": TokenAuthMiddleware(
|
|
URLRouter(
|
|
[url("^api/v1/instance/activity$", consumers.InstanceActivityConsumer)]
|
|
)
|
|
)
|
|
}
|
|
)
|