From 26306f184e6069d7963daee704179c6770cc064b Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 19 2016 13:10:04 +0000 Subject: Include the milestone in the JSON representation of an issue --- diff --git a/pagure/lib/model.py b/pagure/lib/model.py index e1c7216..2e50fb8 100644 --- a/pagure/lib/model.py +++ b/pagure/lib/model.py @@ -673,6 +673,7 @@ class Issue(BASE): 'assignee': self.assignee.to_json( public=public) if self.assignee else None, 'priority': self.priority, + 'milestone': self.milestone, } comments = []