summaryrefslogtreecommitdiff
path: root/kvmd/plugins/auth/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2019-04-27 05:16:00 +0300
committerDevaev Maxim <[email protected]>2019-04-27 05:16:00 +0300
commit493d160a6e87120b9f57493cc594f487ef140e90 (patch)
tree12344ac01b7d36a6055b4d22849e335decee2df6 /kvmd/plugins/auth/__init__.py
parent3476f52da9728995c978394748cec812d554ec2f (diff)
single-shot auth using headers
Diffstat (limited to 'kvmd/plugins/auth/__init__.py')
-rw-r--r--kvmd/plugins/auth/__init__.py2
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: