去掉控制器上的拦截器

This commit is contained in:
Jeremy Yin 2019-06-19 23:01:00 +08:00
parent de3558a97d
commit efb6fe6a14
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import { LoggingInterceptor } from '../../core/interceptors/logging.interceptor'
@Controller('posts')
// @UseGuards(DemoAuthGuard)
// @UseFilters(DemoFilter)
@ UseInterceptors(LoggingInterceptor)
// @ UseInterceptors(LoggingInterceptor)
export class PostsController {
constructor(private readonly demoService: DemoService) {}