X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9e621499c65fcb873d2963c7da13be76d6aff825..c79859fc60a6db521c413ab3f3e1b2b3440670e2:/src/funding/models.py diff --git a/src/funding/models.py b/src/funding/models.py index 9907cd017..0e3fa425d 100644 --- a/src/funding/models.py +++ b/src/funding/models.py @@ -270,6 +270,7 @@ class Funding(models.Model): offer = models.ForeignKey(Offer, models.PROTECT, verbose_name=_('offer')) name = models.CharField(_('name'), max_length=127, blank=True) email = models.EmailField(_('email'), blank=True, db_index=True) + user = models.ForeignKey(settings.AUTH_USER_MODEL, models.SET_NULL, blank=True, null=True) amount = models.DecimalField(_('amount'), decimal_places=2, max_digits=10) payed_at = models.DateTimeField(_('payed at'), null=True, blank=True, db_index=True) perks = models.ManyToManyField(Perk, verbose_name=_('perks'), blank=True) @@ -304,6 +305,9 @@ class Funding(models.Model): 'key': self.notify_key, })) + def wl_optout_url(self): + return 'https://wolnelektury.pl' + self.get_disable_notifications_url() + def save(self, *args, **kwargs): if self.email and not self.notify_key: self.notify_key = get_random_hash(self.email)