1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00
Files
seahub/thirdpart/registration/signals.py

11 lines
188 B
Python
Raw Normal View History

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