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