Adds an extra redirect.

This commit is contained in:
SergeantPanda 2025-03-04 09:19:38 -06:00
parent 8a20258ad5
commit aa74d5a9fd

View file

@ -52,6 +52,7 @@ urlpatterns = [
# Add proxy apps
path('proxy/', include('apps.proxy.urls')),
path('proxy', RedirectView.as_view(url='/proxy/', permanent=True)),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)