diff options
author | Magnus Hagander | 2024-05-08 15:39:12 +0000 |
---|---|---|
committer | Magnus Hagander | 2024-05-08 15:39:12 +0000 |
commit | 10930db722b7d8206ecf97287e15e3088b2251ab (patch) | |
tree | df2889bf44f1998561624fdb2553d30569bf6f8c | |
parent | 76f248bfeadf7fa43286a7bc15b3bda5cd433e90 (diff) |
Update auth plugin with signal config for django 4.2
-rw-r--r-- | pgcommitfest/auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pgcommitfest/auth.py b/pgcommitfest/auth.py index 0a07571..9343fc0 100644 --- a/pgcommitfest/auth.py +++ b/pgcommitfest/auth.py @@ -47,12 +47,12 @@ import time # This signal fires when a user is created based on data from upstream. -auth_user_created_from_upstream = Signal(providing_args=['user', ]) +auth_user_created_from_upstream = Signal() # This signal fires whenever new user data has been received. Note that this # happens *after* first_name, last_name and email has been updated on the user # record, so those are not included in the userdata struct. -auth_user_data_received = Signal(providing_args=['user', 'userdata']) +auth_user_data_received = Signal() class AuthBackend(ModelBackend): |