From 813ab93c11cd54cf52cfe83c1b892e3bbeff1fa7 Mon Sep 17 00:00:00 2001 From: Isaac Bythewood Date: Sat, 11 Feb 2017 05:41:24 +0000 Subject: [PATCH] Change default of user registrations to True since it is a common problem with new users. --- pinry/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinry/settings.py b/pinry/settings.py index cbab4ca..a3e2f4e 100644 --- a/pinry/settings.py +++ b/pinry/settings.py @@ -122,7 +122,7 @@ STATIC_URL = '/static/' MEDIA_URL = '/static/media/' # Set to False to disable people from creating new accounts. -ALLOW_NEW_REGISTRATIONS = False +ALLOW_NEW_REGISTRATIONS = True # Set to False to force users to login before seeing any pins. PUBLIC = True