Skip to content

Commit

Permalink
Added auth and people urls to urlpatterns
Browse files Browse the repository at this point in the history
  • Loading branch information
Fer-Bar committed May 26, 2024
1 parent 2171183 commit 0ef9b2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion albercan_backend/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
from django.urls import include, path

urlpatterns = [
path('', include('pet.urls')),
path('', include('pet.urls', namespace='pet')),
path('', include('people.urls', namespace='people')),
path('auth/', include('authentication.urls', namespace='authentication')),
path("admin/", admin.site.urls),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

0 comments on commit 0ef9b2a

Please sign in to comment.