aboutsummaryrefslogtreecommitdiffstats
path: root/backend/ts/api/reset.ts
blob: c6c4bd5e78cd0934c5b52712f5e43a2a4d27badd (plain) (blame)
1
2
3
4
5
6
7
import { Request, Response } from "express";
import { API_RES } from "../../../helpers/helpersBack";

export default function reset(req: Request, res: Response) {
    req.session?.destroy(() => true);
    res.send(API_RES.success); 
}