mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 14:47:35 +03:00
Merge pull request #1692 from raguilar127/master
Fix incorrect method override in authentication plugin example
This commit is contained in:
commit
d79abc2b7a
1 changed files with 1 additions and 1 deletions
|
@ -1819,7 +1819,7 @@ class Auth(BaseAuth):
|
||||||
def __init__(self, configuration):
|
def __init__(self, configuration):
|
||||||
super().__init__(configuration.copy(PLUGIN_CONFIG_SCHEMA))
|
super().__init__(configuration.copy(PLUGIN_CONFIG_SCHEMA))
|
||||||
|
|
||||||
def login(self, login, password):
|
def _login(self, login, password):
|
||||||
# Get password from configuration option
|
# Get password from configuration option
|
||||||
static_password = self.configuration.get("auth", "password")
|
static_password = self.configuration.get("auth", "password")
|
||||||
# Check authentication
|
# Check authentication
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue