From d2be086cd1de73df1ebb7270f40b2e8bc0b0db05 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 2 Feb 2025 09:04:20 +0100 Subject: [PATCH] oauth2 adjustments to radicale changes in the past --- radicale/auth/oauth2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/auth/oauth2.py b/radicale/auth/oauth2.py index c9ae4359..7ca5eb9d 100644 --- a/radicale/auth/oauth2.py +++ b/radicale/auth/oauth2.py @@ -39,9 +39,9 @@ class Auth(auth.BaseAuth): raise RuntimeError("OAuth2 token endpoint URL is required") logger.info("auth OAuth2 token endpoint: %s" % (self._endpoint)) - def login(self, login, password): + def _login(self, login, password): """Validate credentials. - Sends login credentials to oauth auth endpoint and checks that a token is returned + Sends login credentials to oauth token endpoint and checks that a token is returned """ try: # authenticate to authentication endpoint and return login if ok, else ""