From da33efc80fef3457566e487766bdcce85b19c51b Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 20 2015 08:24:23 +0000 Subject: Add tags and dependency tree in the JSON representation of the issues --- diff --git a/progit/lib/model.py b/progit/lib/model.py index d415d35..f8fd349 100644 --- a/progit/lib/model.py +++ b/progit/lib/model.py @@ -361,6 +361,9 @@ class Issue(BASE): 'emails': [email.email for email in self.user.emails], }, 'private': self.private, + 'tags': ','.join(self.tags_text), + 'depends': ','.join(self.depends_text), + 'blocks': ','.join(self.blocks_text), } comments = []