feat: remove appwrite and add nextjs backend
This commit is contained in:
7
backend/src/auth/dto/authSignIn.dto.ts
Normal file
7
backend/src/auth/dto/authSignIn.dto.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { PickType } from "@nestjs/swagger";
|
||||
import { AuthDTO } from "./auth.dto";
|
||||
|
||||
export class AuthSignInDTO extends PickType(AuthDTO, [
|
||||
"email",
|
||||
"password",
|
||||
] as const) {}
|
||||
Reference in New Issue
Block a user