Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 39x 317x 317x 317x | import { Request, Response } from "express";
import { loginWithJwt } from "server/features/user/session-restore/sessionRestoreService";
import { PostSessionRecoveryRequest } from "shared/types/api/login";
export const postSessionRestore = async (
req: Request<unknown, unknown, PostSessionRecoveryRequest>,
res: Response,
): Promise<Response> => {
const { jwt } = req.body;
const response = await loginWithJwt(jwt);
return res.json(response);
};
|