v3.0.0/src/api/routes/verify/get.ts

7 lines
243 B
TypeScript

import type { FastifyReply } from 'fastify';
import { RequestWithUser } from '../../structures/interfaces';
export const middlewares = ['auth'];
export const run = (req: RequestWithUser, res: FastifyReply) => res.status(200).send(req.user);