54cacd784c
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
9 lines
206 B
Python
9 lines
206 B
Python
"""Outpost Websocket URLS"""
|
|
from django.urls import path
|
|
|
|
from authentik.outposts.channels import OutpostConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/outpost/<uuid:pk>/", OutpostConsumer.as_asgi()),
|
|
]
|