Untitled
Anonymous
plain_text
11/20/2022 9:37 PM
504 B
18
Indexable
@Post("/local")
async run_db_first(
@Req() req: Request,
@Res() res: Response,
@Body(ValidationPipe, new CredentialsValidationPipe()) body: LinkedInSearchDto
):Promise<ShortCandidateInformationDto[]>{
req.socket.on('close', () => {
console.log("Req cancelado");
res.end();
})
return await this.facadeService.performLocalSearch(body);
}Editor is loading...