Skip to content

Commit

Permalink
Merge pull request #1692 from raguilar127/master
Browse files Browse the repository at this point in the history
Fix incorrect method override in authentication plugin example
  • Loading branch information
pbiering authored Feb 7, 2025
2 parents c2def71 + 938f6a9 commit d79abc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d79abc2

Please sign in to comment.