mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-13 22:37:14 +10:00
1825fc3283
- add sync crowdin translations github action
7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
import { createZodDto } from "nestjs-zod/dto";
|
|
import { z } from "nestjs-zod/z";
|
|
|
|
const authProvidersSchema = z.array(z.enum(["email", "github", "google"]));
|
|
|
|
export class AuthProvidersDto extends createZodDto(authProvidersSchema) {}
|