Browse Source

[enh] Documentation about new settings

ljf 8 years ago
parent
commit
0a415d75a7
1 changed files with 15 additions and 0 deletions
  1. 15 0
      coin/settings_base.py

+ 15 - 0
coin/settings_base.py

@@ -260,3 +260,18 @@ FEEDS = (
     ('ffdn', 'http://www.ffdn.org/fr/rss.xml', 3),
 #    ('isp', 'http://isp.example.com/feed/', 3),
 )
+
+# Account registration
+# Allow visitor to join the association by register on COIN
+REGISTRATION_OPEN = True
+
+# All account with unvalidated email will be deleted after X days
+ACCOUNT_ACTIVATION_DAYS = 7
+
+# Additionnal security salt use to build validation link
+REGISTRATION_SALT = "Mouhahahahahaha lol"
+
+# Template string to display the label the member should indicates for the bank
+# transfer
+BANK_TRANSFER_LABEL = "ID{{ user.pk }}"
+