]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/form.py
OSQA-829, resolves a unicode problem when answering question, use smart_unicode for...
[osqa.git] / forum / settings / form.py
index 0637c130ef2f5166446f84e2a71cc8959f3f1af1..5f770b309ded2f75ea4f49ea2233ec9cfbbef460 100644 (file)
@@ -9,6 +9,11 @@ label = _("Enable community wiki"),
 help_text = _("Can questions or answers be marked as community wiki."),
 required=False))
 
+LIMIT_TAG_CREATION = Setting('LIMIT_TAG_CREATION', False, FORUM_SET, dict(
+label = _("Limit tag creation"),
+help_text = _("Limit tag creation to super users, staff or users with a minimum reputation."),
+required=False))
+
 
 """ settings for questions """
 FORM_MIN_QUESTION_TITLE = Setting('FORM_MIN_QUESTION_TITLE', 10, FORUM_SET, dict(
@@ -76,4 +81,7 @@ required=False))
 FORM_GRAVATAR_IN_COMMENTS = Setting('FORM_GRAVATAR_IN_COMMENTS', False, FORUM_SET, dict(
 label = _("Show author gravatar in comments"),
 help_text = _("Show the gravatar image of a comment author."),
-required=False))
\ No newline at end of file
+required=False))
+
+
+