diff options
Diffstat (limited to 'pgcommitfest/auth.py')
-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): |