diff options
author | 2019-04-08 12:48:53 +0100 | |
---|---|---|
committer | 2019-04-08 12:48:53 +0100 | |
commit | 3d868521f60b1b8d5d1106e4b8cd089a018328e3 (patch) | |
tree | b90f4563965fe8d64fb7346f3fb65f7c2cc86151 /pydis_site/apps/wiki_container/apps.py | |
parent | Add django-wiki, and downgrade to Django 2.1 (diff) |
First attempt at getting the wiki up
Diffstat (limited to 'pydis_site/apps/wiki_container/apps.py')
-rw-r--r-- | pydis_site/apps/wiki_container/apps.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pydis_site/apps/wiki_container/apps.py b/pydis_site/apps/wiki_container/apps.py new file mode 100644 index 00000000..874ae8e4 --- /dev/null +++ b/pydis_site/apps/wiki_container/apps.py @@ -0,0 +1,6 @@ +from wiki.apps import WikiConfig + + +class WikiContainerConfig(WikiConfig): + name = 'wiki_container' + default_site = 'pydis_site.sites.PyDisWikiSite' |