aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-09-02 21:15:52 +0000
committerGravatar GitHub <[email protected]>2021-09-02 21:15:52 +0000
commitb051c454ac853a145fa961f4409fcadd8b1d5dbc (patch)
treeff6219c4a3114c5eff2cb173a06b932735c09af8
parentAdd Django Prometheus to installed apps and middleware (diff)
Add Django Prometheus to URLs
-rw-r--r--pydis_site/apps/home/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py
index 1e2af8f3..bb77220b 100644
--- a/pydis_site/apps/home/urls.py
+++ b/pydis_site/apps/home/urls.py
@@ -7,6 +7,7 @@ app_name = 'home'
urlpatterns = [
path('', HomeView.as_view(), name='home'),
path('', include('pydis_site.apps.redirect.urls')),
+ path('', include('django_prometheus.urls')),
path('admin/', admin.site.urls),
path('resources/', include('pydis_site.apps.resources.urls')),
path('pages/', include('pydis_site.apps.content.urls')),