We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25a668e + eb22ca9 commit 5666558Copy full SHA for 5666558
src/django_registration/signals.py
@@ -6,7 +6,9 @@
6
from django.dispatch import Signal
7
8
# A new user has registered.
9
-user_registered = Signal(providing_args=["user", "request"])
+# Provided args: user, request
10
+user_registered = Signal()
11
12
# A user has activated his or her account.
-user_activated = Signal(providing_args=["user", "request"])
13
14
+user_activated = Signal()
0 commit comments