1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Update DOCUMENTATION.md

Corrected the method override in the authentication plugin example. The original example suggested overriding login(), but BaseAuth expects _login() to be implemented instead. Overriding login() causes a Too many values to unpack error.
This commit is contained in:
Rob Aguilar 2025-02-06 21:56:03 -05:00 committed by GitHub
parent c2def71ce6
commit 938f6a97fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1819,7 +1819,7 @@ class Auth(BaseAuth):
def __init__(self, configuration):
super().__init__(configuration.copy(PLUGIN_CONFIG_SCHEMA))
def login(self, login, password):
def _login(self, login, password):
# Get password from configuration option
static_password = self.configuration.get("auth", "password")
# Check authentication