1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-02 07:47:32 +00:00
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()