We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c727c7 commit 15c4687Copy full SHA for 15c4687
src/schema/dto/enqueue-repeating-schema.dto.ts
@@ -1,6 +1,8 @@
1
+import { IsString } from 'class-validator';
2
import { IsCron } from '../../common/decorator/validation/IsCron';
3
4
export class EnqueueRepeatingSchemaDto {
5
+ @IsString()
6
@IsCron()
7
readonly cron: string;
8
}
0 commit comments