]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/form.py
Make the new "show welcome box" setting default to true
[osqa.git] / forum / settings / form.py
index ba1b5b595eb38df271bbfc8d77a5bf4311a4f01c..45df66f7eb7c8b24860bee38f60adee582353198 100644 (file)
@@ -4,6 +4,10 @@ from django.utils.translation import ugettext_lazy as _
 
 FORUM_SET = SettingSet('form', _('Form settings'), _("General settings for the OSQA forms."), 10)
 
+WIKI_ON = Setting('WIKI_ON', True, FORUM_SET, dict(
+label = _("Enable community wiki"),
+help_text = _("Can questions or answers be marked as community wiki."),
+required=False))
 
 
 """ settings for questions """