diff options
author | 2019-09-06 09:32:30 +0200 | |
---|---|---|
committer | 2019-09-06 09:32:30 +0200 | |
commit | ae6538a46a74cf8d7bb2ef796a5a82f7623c4e24 (patch) | |
tree | 970c8384bf6a635fbc10624a027d123870c38871 /pydis_site/hosts.py | |
parent | Merge pull request #240 from python-discord/update-contrib (diff) | |
parent | Applying PR Feedback: Colour constants for readability & absolute import (diff) |
Merge pull request #238 from python-discord/django-deleted-messages-frontend
Deleted Messages Front-End
Diffstat (limited to 'pydis_site/hosts.py')
-rw-r--r-- | pydis_site/hosts.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/hosts.py b/pydis_site/hosts.py index 0fa4793d..898e8cdc 100644 --- a/pydis_site/hosts.py +++ b/pydis_site/hosts.py @@ -5,5 +5,6 @@ host_patterns = patterns( '', host(r'admin', 'pydis_site.apps.admin.urls', name="admin"), host(r'api', 'pydis_site.apps.api.urls', name='api'), + host(r'staff', 'pydis_site.apps.staff.urls', name='staff'), host(r'.*', 'pydis_site.apps.home.urls', name=settings.DEFAULT_HOST) ) |