mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-17 15:53:28 +00:00
11 lines
283 B
Python
11 lines
283 B
Python
from django.dispatch import Signal
|
|
|
|
|
|
# A new user has registered.
|
|
user_registered = Signal(providing_args=["user", "request"])
|
|
|
|
# A user has activated his or her account.
|
|
user_activated = Signal(providing_args=["user", "request"])
|
|
|
|
user_deleted = Signal(providing_args=['username'])
|