Fix formatting errors after doing app wide instead of only the heldesk

folder
This commit is contained in:
Christopher Broderick
2025-04-01 11:09:34 +01:00
parent 0952ac9743
commit 75bd375c6b
14 changed files with 308 additions and 281 deletions

View File

@@ -5,8 +5,12 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('helpdesk.urls', namespace='helpdesk')),
path('api/auth/', include('rest_framework.urls', namespace='rest_framework'))
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + local_urlpatterns
urlpatterns = (
[
path("admin/", admin.site.urls),
path("", include("helpdesk.urls", namespace="helpdesk")),
path("api/auth/", include("rest_framework.urls", namespace="rest_framework")),
]
+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
+ local_urlpatterns
)