mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
8 lines
231 B
Python
8 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"])
|