mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
Added hdhr urls
This commit is contained in:
parent
0868d51935
commit
9cbf70a4ec
1 changed files with 5 additions and 1 deletions
|
|
@ -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'),
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue