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

Signed-off-by: Stephen Finucane <[email protected]>
Reviewed-by: Andy Doan <[email protected]>
---
 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

_______________________________________________
Patchwork mailing list
[email protected]
https://lists.ozlabs.org/listinfo/patchwork

Reply via email to