From eda3f8fba513480b623a019c54a01d2be40c56d8 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 8 Apr 2016 17:41:01 +0000 Subject: [PATCH] Add an entry to GROUP_EVENT_CHOICES for status updates. Fixes #1948. Commit ready for merge. - Legacy-Id: 11116 --- ietf/group/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ietf/group/models.py b/ietf/group/models.py index 29344fc2e..814085341 100644 --- a/ietf/group/models.py +++ b/ietf/group/models.py @@ -211,7 +211,8 @@ GROUP_EVENT_CHOICES = [ ("info_changed", "Changed metadata"), ("requested_close", "Requested closing group"), ("changed_milestone", "Changed milestone"), - ("sent_notification", "Sent notification") + ("sent_notification", "Sent notification"), + ("status_update", "Status update"), ] class GroupEvent(models.Model):