LoginWithGoogle feature now working.

This commit is contained in:
2024-09-24 01:37:53 -04:00
parent e482a0726f
commit 1aa940fa05
9 changed files with 680 additions and 149 deletions

View File

@@ -11,4 +11,5 @@ public class ApplicationUser : IdentityUser<Guid>
public DateTime? BirthDate { get; set; }
[MaxLength(255)] public string? Address { get; set; }
[MaxLength(255)] public string? PortraitUrl { get; set; }
[MaxLength(255)] public string? GoogleId { get; set; }
}