Add dummy logout endpoint

This commit is contained in:
Henry Hiles 2025-07-20 15:47:52 -04:00
commit 8efb087cdd
No known key found for this signature in database
2 changed files with 7 additions and 2 deletions

View file

@ -35,7 +35,8 @@ void main(List<String> argsRaw) async {
)
..get("/userinfo", apiHelper.userinfoHandler)
..get("/bridge", apiHelper.bridgeHandler)
..post("/login", apiHelper.handleLogin)
..post("/login", apiHelper.loginHandler)
..post("/logout", apiHelper.logoutHandler)
..post("/token", apiHelper.tokenHandler))
.call,
);