From 9cbf70a4ec7be87b049463c7f45bca310e5dbf84 Mon Sep 17 00:00:00 2001 From: Dispatcharr Date: Sun, 2 Mar 2025 15:08:34 -0600 Subject: [PATCH] Added hdhr urls --- dispatcharr/urls.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dispatcharr/urls.py b/dispatcharr/urls.py index c5d99ccf..57d85cfb 100644 --- a/dispatcharr/urls.py +++ b/dispatcharr/urls.py @@ -30,10 +30,14 @@ urlpatterns = [ path('admin', RedirectView.as_view(url='/admin/', permanent=True)), # This fixes the issue path('admin/', admin.site.urls), - # Admin + # Outputs path('output', RedirectView.as_view(url='/output/', permanent=True)), # This fixes the issue path('output/', include(('apps.output.urls', 'output'), namespace='output')), + # HDHR + path('hdhr', RedirectView.as_view(url='/hdhr/', permanent=True)), # This fixes the issue + path('hdhr/', include(('apps.hdhr.urls', 'hdhr'), namespace='hdhr')), + # Swagger UI path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),