lower askbot limits for minimum question length, body

This commit is contained in:
David Ormsbee
2012-02-07 18:11:56 -05:00
parent ad02725302
commit ca29aef286

View File

@@ -328,6 +328,17 @@ INSTALLED_APPS = INSTALLED_APPS + (
LIVESETTINGS_OPTIONS = {
1: {
'SETTINGS' : {
'FORUM_DATA_RULES' : {
'MIN_TITLE_LENGTH' : 1,
'MIN_QUESTION_BODY_LENGTH' : 1,
'MIN_ANSWER_BODY_LENGTH' : 1,
# 'ENABLE_VIDEO_EMBEDDING' : True,
#
# Enabling video requires forked version of markdown
# pip uninstall markdown2
# pip install -e git+git://github.com/andryuha/python-markdown2.git#egg=markdown2
},
'MIN_REP' : {
'MIN_REP_TO_VOTE_UP' : 1,
'MIN_REP_TO_UPLOAD_FILES' : 1,