1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 06:33:48 +00:00
Files
seahub/thirdpart/registration/signals.py
2023-06-12 09:53:31 +08:00

11 lines
188 B
Python

from django.dispatch import Signal
# A new user has registered.
user_registered = Signal()
# A user has activated his or her account.
user_activated = Signal()
user_deleted = Signal()