1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 23:04:21 +00:00

🐛 Remove namespace= from path

It seems like it's no longer supported
This commit is contained in:
Steffo 2021-04-03 16:17:05 +02:00
parent 8028bf7414
commit d3e86be8b2
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -18,5 +18,5 @@ from django.urls import path, include
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('api-auth/', include("rest_framework.urls"), namespace="rest_framework") path('api-auth/', include("rest_framework.urls"))
] ]