mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-16 06:03:35 +00:00
9 lines
231 B
Python
9 lines
231 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"])
|