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

diff --git a/src/paypal/models.py b/src/paypal/models.py
index 527e80458..3fc012ba7 100644
--- a/src/paypal/models.py
+++ b/src/paypal/models.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -14,7 +13,11 @@ class BillingPlan(models.Model):
 
 class BillingAgreement(models.Model):
     agreement_id = models.CharField(max_length=32)
-    user = models.ForeignKey(User)
-    plan = models.ForeignKey(BillingPlan)
+    schedule = models.ForeignKey('club.Schedule', models.PROTECT)
+    plan = models.ForeignKey(BillingPlan, models.PROTECT)
     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)