1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-03 16:19:59 +00:00
seahub/thirdpart/registration/signals.py

11 lines
188 B
Python
Raw Permalink Normal View History

from django.dispatch import Signal
# A new user has registered.
2023-06-12 01:53:31 +00:00
user_registered = Signal()
# A user has activated his or her account.
2023-06-12 01:53:31 +00:00
user_activated = Signal()
2018-04-26 07:00:18 +00:00
2023-06-12 01:53:31 +00:00
user_deleted = Signal()