FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 7a4e42bb authored by Dr Rich Wareham's avatar Dr Rich Wareham
Browse files

lookupproxy: allow trailing slash in ui URL

The IAR backend allows both /ui and /ui/ for the swagger UI URLs. We
should be consistent.
parent a30b3d2d
No related branches found
No related tags found
1 merge request!14lookupproxy: allow trailing slash in ui URL
......@@ -36,7 +36,7 @@ urlpatterns = [
path('status', automationcommon.views.status, name='status'),
path('', include('lookupapi.urls')),
path('ui', schema_view.with_ui('swagger', cache_timeout=None), name='schema-swagger-ui'),
path('ui/', schema_view.with_ui('swagger', cache_timeout=None), name='schema-swagger-ui'),
]
# Selectively enable django debug toolbar URLs. Only if the toolbar is
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment