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 b98ecce + 1b63bb5 commit ce8d261Copy full SHA for ce8d261
framework/auth/__init__.py
@@ -35,6 +35,7 @@ def authenticate(user, response, user_updates=None):
35
'auth_user_username': user.username,
36
'auth_user_id': user._primary_key,
37
'auth_user_fullname': user.fullname,
38
+ 'user_reference_uri': user.get_semantic_iri(),
39
}
40
print_cas_log(f'Finalizing authentication - data updated: user=[{user._id}]', LogLevel.INFO)
41
enqueue_task(update_user_from_activity.s(user._id, timezone.now().timestamp(), cas_login=True, updates=user_updates))
0 commit comments