25d4905d6c
* outposts: use channel groups instead of saving channel names Signed-off-by: Jens Langhammer <jens@goauthentik.io> * use pubsub Signed-off-by: Jens Langhammer <jens@goauthentik.io> * support storing other args with state Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
23 lines
818 B
Python
23 lines
818 B
Python
"""Outpost Websocket URLS"""
|
|
from django.urls import path
|
|
|
|
from authentik.outposts.api.outposts import OutpostViewSet
|
|
from authentik.outposts.api.service_connections import (
|
|
DockerServiceConnectionViewSet,
|
|
KubernetesServiceConnectionViewSet,
|
|
ServiceConnectionViewSet,
|
|
)
|
|
from authentik.outposts.consumer import OutpostConsumer
|
|
from authentik.root.middleware import ChannelsLoggingMiddleware
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/outpost/<uuid:pk>/", ChannelsLoggingMiddleware(OutpostConsumer.as_asgi())),
|
|
]
|
|
|
|
api_urlpatterns = [
|
|
("outposts/instances", OutpostViewSet),
|
|
("outposts/service_connections/all", ServiceConnectionViewSet),
|
|
("outposts/service_connections/docker", DockerServiceConnectionViewSet),
|
|
("outposts/service_connections/kubernetes", KubernetesServiceConnectionViewSet),
|
|
]
|