diff --git a/src/routes/auth.ts b/src/routes/auth.ts index 486f208..3b08001 100644 --- a/src/routes/auth.ts +++ b/src/routes/auth.ts @@ -236,12 +236,7 @@ resource('/session/logout', { post: routeAuthenticated( "Logout", "Close current session.", - { - parameters: [ - await parameter("session", "Session ID", ref("Id")) - ], - ...await noContent("Logged out.") - }, + await noContent("Logged out."), true ) });