mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-23 07:41:52 +00:00
9 lines
209 B
Python
9 lines
209 B
Python
|
from django.dispatch import Signal
|
||
|
|
||
|
|
||
|
# A new user has registered.
|
||
|
user_registered = Signal(providing_args=["user"])
|
||
|
|
||
|
# A user has activated his or her account.
|
||
|
user_activated = Signal(providing_args=["user"])
|