We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f248b commit 10930dbCopy full SHA for 10930db
pgcommitfest/auth.py
@@ -47,12 +47,12 @@
47
48
49
# This signal fires when a user is created based on data from upstream.
50
-auth_user_created_from_upstream = Signal(providing_args=['user', ])
+auth_user_created_from_upstream = Signal()
51
52
# This signal fires whenever new user data has been received. Note that this
53
# happens *after* first_name, last_name and email has been updated on the user
54
# record, so those are not included in the userdata struct.
55
-auth_user_data_received = Signal(providing_args=['user', 'userdata'])
+auth_user_data_received = Signal()
56
57
58
class AuthBackend(ModelBackend):
0 commit comments