1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-10 03:17:39 +00:00
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 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()