X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/468c2e650c854ffa691afc73aa1f41ce61283cdb..124d23a42f7e6153c8b4de59dd337bdd98a9d893:/src/paypal/models.py?ds=inline

diff --git a/src/paypal/models.py b/src/paypal/models.py
index 527e80458..426688231 100644
--- a/src/paypal/models.py
+++ b/src/paypal/models.py
@@ -18,3 +18,7 @@ class BillingAgreement(models.Model):
     plan = models.ForeignKey(BillingPlan)
     active = models.BooleanField(max_length=32)
     token = models.CharField(max_length=32)
+
+    def check_agreement(self):
+        from .rest import check_agreement
+        return check_agreement(self.agreement_id)