aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/hosts.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-08 14:05:50 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-08 14:05:50 +0100
commit4dc58e6e14702989f7419d6bfc4ca589898f2e56 (patch)
tree40157a59a1680a29399afb1ac97f6727daddd4b4 /pydis_site/hosts.py
parentFirst attempt at getting the wiki up (diff)
Remove wiki host, use /wiki - Also some wiki config
I've included the monokai pygments theme, but we can change it later
Diffstat (limited to 'pydis_site/hosts.py')
-rw-r--r--pydis_site/hosts.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pydis_site/hosts.py b/pydis_site/hosts.py
index fc43d0eb..25220ee0 100644
--- a/pydis_site/hosts.py
+++ b/pydis_site/hosts.py
@@ -3,8 +3,7 @@ from django_hosts import host, patterns
host_patterns = patterns(
'',
- # host(r"subdomain pattern", "URLs module", "host entry name")
- host(r'wiki', 'pydis_site.apps.wiki_container.urls', name="wiki"),
+ # host(r"subdomain pattern", "URLs module", "host entry name"),
host(r'admin', 'pydis_site.apps.admin.urls', name="admin"),
host(r'api', 'pydis_site.apps.api.urls', name='api'),
host(r'.*', 'pydis_site.apps.home.urls', name=settings.DEFAULT_HOST)