Added a new closed status to the questions

remotes/origin/enhancement/email-actions
David Barragán Merino 2013-11-05 00:23:52 +01:00
parent e31d68e7b5
commit 9ad06256a0
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@ ISSUE_TYPES = (
QUESTION_STATUS = ( QUESTION_STATUS = (
(1, _("New"), False), (1, _("New"), False),
(2, _("Pending"), False), (2, _("Pending"), False),
(3, _("Answered"), True), (3, _("Answered"), False),
(4, _("Closed"), True),
) )
# TODO: pending to refactor # TODO: pending to refactor