summary refs log tree commit diff
path: root/latest/modules/password_auth_provider_callbacks.html
diff options
context:
space:
mode:
Diffstat (limited to 'latest/modules/password_auth_provider_callbacks.html')
-rw-r--r--latest/modules/password_auth_provider_callbacks.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/latest/modules/password_auth_provider_callbacks.html b/latest/modules/password_auth_provider_callbacks.html

index 18f4555d53..0a6abe16ee 100644 --- a/latest/modules/password_auth_provider_callbacks.html +++ b/latest/modules/password_auth_provider_callbacks.html
@@ -362,7 +362,7 @@ class MyAuthProvider: return None if self.credentials.get(username) == login_dict.get(&quot;my_field&quot;): - return self.api.get_qualified_user_id(username) + return (self.api.get_qualified_user_id(username), None) async def check_pass( self, @@ -379,7 +379,7 @@ class MyAuthProvider: return None if self.credentials.get(username) == login_dict.get(&quot;password&quot;): - return self.api.get_qualified_user_id(username) + return (self.api.get_qualified_user_id(username), None) </code></pre> </main>