Browse Source

Moved MISAGO_ENABLE_DELETE_OWN_ACCOUNT into MISAGO settings category

Rafał Pitoń 7 years ago
parent
commit
45c0c22a4b
1 changed files with 5 additions and 6 deletions
  1. 5 6
      misago/project_template/project_name/settings.py

+ 5 - 6
misago/project_template/project_name/settings.py

@@ -159,12 +159,6 @@ EMAIL_HOST_PASSWORD = ''
 DEFAULT_FROM_EMAIL = 'Forums <%s>' % EMAIL_HOST_USER
 
 
-# Allow users to delete their own accounts?
-# Providing such feature is required by EU law from entities that process europeans personal data.
-
-MISAGO_ENABLE_DELETE_OWN_ACCOUNT = True
-
-
 # Application definition
 
 AUTH_USER_MODEL = 'misago_users.User'
@@ -376,3 +370,8 @@ MISAGO_PROFILE_FIELDS = [
         ],
     },
 ]
+
+# Allow users to delete their own accounts?
+# Providing such feature is required by EU law from entities that process europeans personal data.
+
+MISAGO_ENABLE_DELETE_OWN_ACCOUNT = True