]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/minrep.py
OSQA-748, smart unicode filtration for the username in the accept rate singular title
[osqa.git] / forum / settings / minrep.py
index b2ff60d172df6a9416979de875f15611d4062239..1c9e17d34d697b2094a2c801df5ec103902306b1 100644 (file)
@@ -3,6 +3,10 @@ from django.utils.translation import ugettext_lazy as _
 \r
 MIN_REP_SET = SettingSet('minrep', _('Minimum reputation config'), _("Configure the minimum reputation required to perform certain actions on your site."), 300)\r
 \r
+CAPTCHA_IF_REP_LESS_THAN = Setting('CAPTCHA_IF_REP_LESS_THAN', 0, MIN_REP_SET, dict(\r
+label = _("Show captcha if user with less reputation than"),\r
+help_text = _("If the user has less reputation, captcha is used to when adding new content.")))\r
+\r
 REP_TO_VOTE_UP = Setting('REP_TO_VOTE_UP', 15, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to vote up"),\r
 help_text = _("The minimum reputation an user must have to be allowed to vote up.")))\r
@@ -35,6 +39,11 @@ REP_TO_CLOSE_OWN = Setting('REP_TO_CLOSE_OWN', 250, MIN_REP_SET, dict(
 label = _("Minimum reputation to close own question"),\r
 help_text = _("The minimum reputation an user must have to be allowed to close his own question.")))\r
 \r
+UNIFY_PERMISSIONS_TO_CLOSE_AND_REOPEN = Setting('UNIFY_PERMISSIONS_TO_CLOSE_AND_REOPEN', True, MIN_REP_SET, dict(\r
+label = _("Unify close and reopen permissions"),\r
+help_text = _("If checked the same permissions as the ones to close question will be required to reopen it."),\r
+required=False))\r
+\r
 REP_TO_REOPEN_OWN = Setting('REP_TO_REOPEN_OWN', 500, MIN_REP_SET, dict(\r
 label = _("Minimum reputation to reopen own question"),\r
 help_text = _("The minimum reputation an user must have to be allowed to reopen his own question.")))\r