Skip to content

Instantly share code, notes, and snippets.

@Texlo-Dev
Last active December 9, 2018 13:10
Show Gist options
  • Save Texlo-Dev/72d6558c9263685a654d69486a70a4b0 to your computer and use it in GitHub Desktop.
Save Texlo-Dev/72d6558c9263685a654d69486a70a4b0 to your computer and use it in GitHub Desktop.
import {
Body,
Controller,
Get,
Patch,
Post,
ValidationPipe
} from "@nestjs/common";
import { TestDTO } from "../dtos/test.dto";
@Controller()
export class TestController {
@Post("/test")
public testing(@Body(new ValidationPipe()) test: TestDTO): string {
return test.string;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment