Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Vatsalya-singhi/566f5b62ee701e71affba984d6dc8d3a to your computer and use it in GitHub Desktop.
Save Vatsalya-singhi/566f5b62ee701e71affba984d6dc8d3a to your computer and use it in GitHub Desktop.
// Custom Pipe used in a Controller
import { Controller, Post, Body } from '@nestjs/common';
import { UppercasePipe } from './uppercase.pipe';
@Controller('users')
export class UsersController {
@Post()
create(@Body('name', new UppercasePipe()) name: string) {
return { message: 'User created', name };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment