Decorator for DELETE endpoints
The route path
@del("/api/users/:id")async deleteUser(req: KosRequest<"/api/users/:id">, res: KosResponse) { const userId = req.params.id; await this.userService.deleteUser(userId); res.status(204).send();} Copy
@del("/api/users/:id")async deleteUser(req: KosRequest<"/api/users/:id">, res: KosResponse) { const userId = req.params.id; await this.userService.deleteUser(userId); res.status(204).send();}
Decorator for DELETE endpoints