mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-31 22:54:11 +00:00
Add authentication and registration to seahub
This commit is contained in:
8
thirdpart/registration/signals.py
Normal file
8
thirdpart/registration/signals.py
Normal file
@@ -0,0 +1,8 @@
|
||||
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"])
|
Reference in New Issue
Block a user