forked from expo/troggle
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"])
|