mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-12 04:12:16 +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"])
|