24 lines
		
	
	
		
			679 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			679 B
		
	
	
	
		
			Python
		
	
	
	
from channels.auth import AuthMiddlewareStack
 | 
						|
from channels.routing import ProtocolTypeRouter, URLRouter
 | 
						|
from django.core.asgi import get_asgi_application
 | 
						|
from django.urls import re_path
 | 
						|
 | 
						|
from funkwhale_api.instance import consumers
 | 
						|
 | 
						|
application = ProtocolTypeRouter(
 | 
						|
    {
 | 
						|
        # Empty for now (http->django views is added by default)
 | 
						|
        "websocket": AuthMiddlewareStack(
 | 
						|
            URLRouter(
 | 
						|
                [
 | 
						|
                    re_path(
 | 
						|
                        "^api/v1/activity$",
 | 
						|
                        consumers.InstanceActivityConsumer.as_asgi(),
 | 
						|
                    )
 | 
						|
                ]
 | 
						|
            )
 | 
						|
        ),
 | 
						|
        "http": get_asgi_application(),
 | 
						|
    }
 | 
						|
)
 |