Skip to content

Commit

Permalink
build: include urlpatterns from apis_acdhch_default_settings
Browse files Browse the repository at this point in the history
  • Loading branch information
koeaw committed Dec 7, 2023
1 parent 054be55 commit 70ac82d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions apis_ontology/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
from apis_acdhch_default_settings.urls import urlpatterns

urlpatterns = [
path("admin/", admin.site.urls),
urlpatterns += [
path("accounts/", include("django.contrib.auth.urls")),
]

0 comments on commit 70ac82d

Please sign in to comment.