UNPKG

mlgta

Version:

Can log in via google, x, discord. ![alt text](https://raw.githubusercontent.com/takayamaekawa/branding/refs/heads/master/repo/mlgta/login_form.png) After login successfully, redirecting. ![alt text](https://raw.githubusercontent.com/takayamaekawa/b

17 lines (12 loc) 370 B
import express, { Request, Response, NextFunction } from 'express'; import config from '../config'; const router: express.Router = express.Router(); router.get('/', (req: Request, res: Response, next: NextFunction) => { req.logout((err) => { if (err) { return next(err); } res.redirect(`${config.server.root}/`); }); }); export default router;