X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/20785520a46a699410126303b3969abf214a68c8..4883d3744dc45c9f044bc9ce3a5b6c9831a3d9ce:/src/newsletter/models.py diff --git a/src/newsletter/models.py b/src/newsletter/models.py index 6d100a380..65fc43502 100644 --- a/src/newsletter/models.py +++ b/src/newsletter/models.py @@ -1,6 +1,9 @@ # -*- coding: utf-8 -*- +import hashlib + from django.db.models import Model, EmailField, DateTimeField, BooleanField from django.utils.translation import ugettext_lazy as _ +from django.conf import settings class Subscription(Model): @@ -14,4 +17,7 @@ class Subscription(Model): verbose_name_plural = _('subscriptions') def __unicode__(self): - return self.email \ No newline at end of file + return self.email + + def hashcode(self): + return hashlib.sha224(self.email + settings.SECRET_KEY).hexdigest()[:30]