[PATCH v3 2/5] models: Add 'mbox_url' permalink for bundles

Stephen Finucane stephen at that.guru
Fri Mar 17 09:07:25 AEDT 2017


We're going to use this for downloading mboxes via the REST API.

Signed-off-by: Stephen Finucane <stephen at that.guru>
Reviewed-by: Andy Doan <andy.doan at linaro.org>
---
 patchwork/models.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/patchwork/models.py b/patchwork/models.py
index 94aaa0f..199c118 100644
--- a/patchwork/models.py
+++ b/patchwork/models.py
@@ -741,6 +741,11 @@ class Bundle(models.Model):
             'bundlename': self.name,
         })
 
+    @models.permalink
+    def get_mbox_url(self):
+        return ('bundle-mbox', (), {'bundlename': self.name,
+                                    'username': self.owner.username})
+
     class Meta:
         unique_together = [('owner', 'name')]
 
-- 
2.9.3



More information about the Patchwork mailing list