diff options
Diffstat (limited to 'kvmd/plugins/auth/__init__.py')
-rw-r--r-- | kvmd/plugins/auth/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/auth/__init__.py b/kvmd/plugins/auth/__init__.py index 3bc40372..18f7ed6b 100644 --- a/kvmd/plugins/auth/__init__.py +++ b/kvmd/plugins/auth/__init__.py @@ -28,7 +28,7 @@ from .. import get_plugin_class # ===== class BaseAuthService(BasePlugin): - async def login(self, user: str, passwd: str) -> bool: + async def authorize(self, user: str, passwd: str) -> bool: raise NotImplementedError # pragma: nocover async def cleanup(self) -> None: |