11 lines
422 B
Python
11 lines
422 B
Python
from django.contrib.auth.tokens import PasswordResetTokenGenerator
|
|
from django.utils import six
|
|
|
|
class AccountActivationTokenGenerator(PasswordResetTokenGenerator):
|
|
def _make_hash_value(self, user, timestamp):
|
|
return (
|
|
six.text_type(user.pk) + six.text_type(timestamp) +
|
|
six.text_type(user.profile.email_confirmed)
|
|
)
|
|
|
|
account_activation_token = AccountActivationTokenGenerator() |