checkeo si el username esta tomado

This commit is contained in:
2025-12-03 17:11:12 -03:00
parent 4f4f2fc9dd
commit 89cc2cbaf6
3 changed files with 53 additions and 5 deletions

6
src/types.d.ts vendored
View File

@@ -47,10 +47,10 @@ export interface LoginDto {
}
export interface RegisterDto {
username: string?;
email: string?;
username: string;
email: string;
password: string?;
displayName: string?;
displayName: string;
}
export interface CreatePostDto {