Skip to content

Commit 10930db

Browse files
committed
Update auth plugin with signal config for django 4.2
1 parent 76f248b commit 10930db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pgcommitfest/auth.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@
4747

4848

4949
# This signal fires when a user is created based on data from upstream.
50-
auth_user_created_from_upstream = Signal(providing_args=['user', ])
50+
auth_user_created_from_upstream = Signal()
5151

5252
# This signal fires whenever new user data has been received. Note that this
5353
# happens *after* first_name, last_name and email has been updated on the user
5454
# record, so those are not included in the userdata struct.
55-
auth_user_data_received = Signal(providing_args=['user', 'userdata'])
55+
auth_user_data_received = Signal()
5656

5757

5858
class AuthBackend(ModelBackend):

0 commit comments

Comments
 (0)