fix
This commit is contained in:
@@ -86,7 +86,7 @@ public class IdentityServerConfig
|
||||
|
||||
RedirectUris = new[]
|
||||
{
|
||||
"http://localhost:4200/silent-refresh.html",
|
||||
"http://localhost:4300/silent-refresh.html",
|
||||
},
|
||||
|
||||
AllowedScopes =
|
||||
|
||||
@@ -13,4 +13,5 @@ public class ApplicationUser<TKey>
|
||||
public string? LastName { get; set; }
|
||||
public string? FullName { get; set; }
|
||||
public bool IsEmailConfirmed { get; set; }
|
||||
public string? CurrencyId { get; set; }
|
||||
}
|
||||
@@ -61,6 +61,7 @@ public class UserStore :
|
||||
FirstName = user.FirstName,
|
||||
LastName = user.LastName,
|
||||
FullName = user.FullName,
|
||||
CurrencyId = user.CurrencyId!,
|
||||
IsEmailConfirmed = user.IsEmailConfirmed
|
||||
});
|
||||
|
||||
@@ -78,6 +79,7 @@ public class UserStore :
|
||||
FirstName = user.FirstName,
|
||||
LastName = user.LastName,
|
||||
FullName = user.FullName,
|
||||
CurrencyId = user.CurrencyId!,
|
||||
IsEmailConfirmed = user.IsEmailConfirmed
|
||||
};
|
||||
|
||||
@@ -109,6 +111,7 @@ public class UserStore :
|
||||
FirstName = user.FirstName,
|
||||
LastName = user.LastName,
|
||||
FullName = user.FullName,
|
||||
CurrencyId = user.CurrencyId,
|
||||
IsEmailConfirmed = user.IsEmailConfirmed
|
||||
};
|
||||
}
|
||||
@@ -133,6 +136,7 @@ public class UserStore :
|
||||
FirstName = user.FirstName,
|
||||
LastName = user.LastName,
|
||||
FullName = user.FullName,
|
||||
CurrencyId = user.CurrencyId,
|
||||
IsEmailConfirmed = user.IsEmailConfirmed
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user