Refactor authentication system to use username instead of email; implement change password functionality and logging; add NLog for logging support
Some checks failed
Publish Container / publish (push) Failing after 1m9s
Some checks failed
Publish Container / publish (push) Failing after 1m9s
This commit is contained in:
parent
d3887f1dd0
commit
6e3371514e
12 changed files with 287 additions and 45 deletions
|
|
@ -4,9 +4,11 @@ public sealed class AuthUser
|
|||
{
|
||||
public string Id { get; init; } = string.Empty;
|
||||
|
||||
public string Email { get; init; } = string.Empty;
|
||||
public string Username { get; init; } = string.Empty;
|
||||
|
||||
public string EmailNormalized { get; init; } = string.Empty;
|
||||
public string UsernameNormalized { get; init; } = string.Empty;
|
||||
|
||||
public string PasswordHash { get; init; } = string.Empty;
|
||||
|
||||
public bool MustChangePassword { get; init; } = false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue