Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/temp' into temp
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLovesDoggo committed Dec 3, 2023
2 parents bf7cb50 + f63263c commit 9f7b48c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions wlmac-scavenger/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"django.contrib.staticfiles",
"fontawesomefree",
"core",
"impersonate"
"impersonate",
]

MIDDLEWARE = [
Expand All @@ -30,7 +30,7 @@
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
"impersonate.middleware.ImpersonateMiddleware"
"impersonate.middleware.ImpersonateMiddleware",
]

ROOT_URLCONF = "wlmac-scavenger.urls"
Expand Down
2 changes: 1 addition & 1 deletion wlmac-scavenger/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

urlpatterns = [
path("admin/", admin.site.urls),
path("impersonate/", include('impersonate.urls')),
path("impersonate/", include("impersonate.urls")),
path("", include("core.urls")),
*static(settings.STATIC_URL, document_root=settings.STATIC_ROOT),
]

0 comments on commit 9f7b48c

Please sign in to comment.