feat: Implement comprehensive user authentication with JWT, social login, and password management.

This commit is contained in:
pradeepkumar
2025-12-20 19:22:30 +05:30
parent 1812fd3c98
commit 158a617600
26 changed files with 1608 additions and 4 deletions

6
src/auth/dto/index.ts Normal file
View File

@@ -0,0 +1,6 @@
export * from './register.dto';
export * from './login.dto';
export * from './social-auth.dto';
export * from './forgot-password.dto';
export * from './reset-password.dto';
export * from './refresh-token.dto';