activation.py 502 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. """
  3. flaskbb.core.auth.activation
  4. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5. Interfaces for handling account activation
  6. in FlaskBB
  7. :copyright: (c) 2014-2018 the FlaskBB Team
  8. :license: BSD, see LICENSE for more details
  9. """
  10. from abc import abstractmethod
  11. from ..._compat import ABC
  12. class AccountActivator(ABC):
  13. @abstractmethod
  14. def initiate_account_activation(self, user):
  15. pass
  16. @abstractmethod
  17. def activate_account(self, token):
  18. pass