Ported progress from SPA and began scaffolding Identity UI.

Laid some groundwork in backend.

Began customizing Identity UI.
This commit is contained in:
2021-07-21 01:58:49 -05:00
parent 57f67391f1
commit b43d7bab84
44 changed files with 1225 additions and 620 deletions

View File

@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace Props.Shared.Models
namespace Props.Shared.Models.User
{
public class ApplicationPreferences
{
@@ -10,5 +10,6 @@ namespace Props.Shared.Models
public string ApplicationUserId { get; set; }
public bool EnableSearchHistory { get; set; } = true;
public bool DarkMode { get; set; } = false;
}
}

View File

@@ -4,9 +4,9 @@ using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
using Props.Shared.Models;
using Props.Shared.Models.User;
namespace Props.Models
namespace Props.Models.User
{
public class ApplicationUser : IdentityUser
{