summaryrefslogtreecommitdiff
path: root/qvisqve/api.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-09-10 20:01:34 +0300
committerLars Wirzenius <liw@liw.fi>2018-09-10 20:01:34 +0300
commit23b2f4d5ee90be543d73a811295884949424369a (patch)
tree1862f8f782edcd08077446fa3739235f7e617d0c /qvisqve/api.py
parent3c46cb2ec6d38157c4659cddd7616e2fe4926748 (diff)
downloadqvisqve-23b2f4d5ee90be543d73a811295884949424369a.tar.gz
Drop: /login endpoint (not used anymore)
Diffstat (limited to 'qvisqve/api.py')
-rw-r--r--qvisqve/api.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/qvisqve/api.py b/qvisqve/api.py
index d8b3001..9950694 100644
--- a/qvisqve/api.py
+++ b/qvisqve/api.py
@@ -40,10 +40,9 @@ class API:
version = qvisqve.VersionRouter()
mgmt = qvisqve.ManagementRouter(storedir, baseurl)
token = qvisqve.TokenRouter(tg, clients, users, self._attempts)
- login = qvisqve.LoginRouter()
auth = qvisqve.AuthRouter(applications, users, self._attempts)
- routers = [version, mgmt, token, login, auth]
+ routers = [version, mgmt, token, auth]
self._routes = []
for router in routers:
qvisqve.log.log(