From 8bf3948956b1a53b40854ae2c9e94274866e1f2e Mon Sep 17 00:00:00 2001 From: Scott Bragg Date: Tue, 20 Dec 2016 19:22:03 +1100 Subject: [PATCH] Loosen permissions on wiki editing. (#84) --- pinaxcon/settings.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index b464592b..7d3da58a 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -321,6 +321,11 @@ NOSE_ARGS = [ '--cover-package=registrasion.controllers,registrasion.models', ] +WIKI_CAN_READ = True +WIKI_CAN_WRITE = True +WIKI_CAN_DELETE = True +WIKI_ACCOUNT_HANDLING = False + # Production settings have their own file to override stuff here try: LOCAL_SETTINGS