aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
diff options
context:
space:
mode:
authorGravatar Kieran Siek <[email protected]>2021-05-14 12:34:19 +0800
committerGravatar GitHub <[email protected]>2021-05-14 12:34:19 +0800
commit3506646251b03a13880f0a8e95256439dcdddab9 (patch)
tree975644cd1842760c7dfeb524b8237611f34f24e7 /pydis_site/apps/home/urls.py
parentMerge pull request #478 from python-discord/content-migration (diff)
parentMake tests expect 302. (diff)
Merge pull request #485 from python-discord/ks129/dewikification/redirection
Dewikification - Implement redirections app
Diffstat (limited to 'pydis_site/apps/home/urls.py')
-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 3c716875..e475c491 100644
--- a/pydis_site/apps/home/urls.py
+++ b/pydis_site/apps/home/urls.py
@@ -6,6 +6,7 @@ from .views import HomeView
app_name = 'home'
urlpatterns = [
path('', HomeView.as_view(), name='home'),
+ path('', include('pydis_site.apps.redirect.urls')),
path('admin/', admin.site.urls),
path('resources/', include('pydis_site.apps.resources.urls')),
path('pages/', include('pydis_site.apps.content.urls')),