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

14 lines (11 loc) 330 B
import { Request, Response, NextFunction } from 'express'; const errorHandler = (err: any, _: Request, res: Response, next: NextFunction) => { if (err) { if (err.code === 'EBADCSRFTOKEN') { res.status(403).send('CSRF token validation failed'); } else { next(err); } } }; export default errorHandler;