From 25e280d16873d95cfdb0dac941e5905c1af5e56a Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Mon, 21 May 2012 15:25:15 -0400 Subject: added default automatic decision on whether to reply by comment or answer --- askbot/models/reply_by_email.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/askbot/models/reply_by_email.py b/askbot/models/reply_by_email.py index 0fe243c3..290337fc 100644 --- a/askbot/models/reply_by_email.py +++ b/askbot/models/reply_by_email.py @@ -51,7 +51,8 @@ class ReplyAddress(models.Model): )#the emailed post reply_action = models.CharField( max_length = 32, - choices = REPLY_ACTION_CHOICES + choices = REPLY_ACTION_CHOICES, + default = 'auto_answer_or_comment' ) response_post = models.ForeignKey( Post, -- cgit v1.2.3-1-g7c22