REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 935 B
Close
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/@adminjs/express/src/authentication/logout.handler.ts
Text
Base64
import AdminJS from "adminjs"; import { Router } from "express"; import { AuthenticationOptions } from "../types.js"; const getLogoutPath = (admin: AdminJS) => { const { logoutPath, rootPath } = admin.options; const normalizedLogoutPath = logoutPath.replace(rootPath, ""); return normalizedLogoutPath.startsWith("/") ? normalizedLogoutPath : `/${normalizedLogoutPath}`; }; export const withLogout = ( router: Router, admin: AdminJS, auth: AuthenticationOptions ): void => { const logoutPath = getLogoutPath(admin); const { provider } = auth; router.get(logoutPath, async (request, response) => { if (provider) { try { await provider.handleLogout({ req: request, res: response }); } catch (error) { console.error(error); // fail silently and still logout } } request.session.destroy(() => { response.redirect(admin.options.loginPath); }); }); };
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
login.handler.ts
4.25 KB
lrw-r--r--
2026-02-28 00:29:04
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
logout.handler.ts
935 B
lrw-r--r--
2026-02-28 00:29:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
protected-routes.handler.ts
490 B
lrw-r--r--
2026-02-28 00:29:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
refresh.handler.ts
1.53 KB
lrw-r--r--
2026-02-28 00:29:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).