git://git.onelab.eu
/
myslice.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed bug
[myslice.git]
/
portal
/
signals.py
1
from django.dispatch import Signal
2
3
# A new user has registered.
4
user_registered = Signal(providing_args=["user", "request"])
5
6
# A user has activated his or her account.
7
user_activated = Signal(providing_args=["user", "request"])