Skip to content

Instantly share code, notes, and snippets.

@seanpmaxwell
Last active January 24, 2019 15:32
Show Gist options
  • Save seanpmaxwell/2222a980b577daa5736e775609686233 to your computer and use it in GitHub Desktop.
Save seanpmaxwell/2222a980b577daa5736e775609686233 to your computer and use it in GitHub Desktop.
@Controller('api/users')
export class UserController {
@Get(':id')
@Middleware([middleware1, middleware2])
get(req: Request, res: Response, next: NextFunction): any {
console.log(req.params.id);
return res.status(200).json({msg: 'get_called'});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment