DEV Community

Discussion on: Why you should not use class-validator in NestJS!

Collapse
 
mamged profile image
mAmged • Edited

I guess you did read the documentation very well.
The solution is already there this could just solve your problem:

@IsEnum(EventType)
@ApiProperty({
     description: 'property property',
     enum: EventType
   })
Enter fullscreen mode Exit fullscreen mode
Collapse
 
yantrab profile image
Yaniv Trablesi

Thanks @mamged , i fixed it. but the point is clear also without it.