Bruce Hunter Jr
Bruce Hunter Jr
I am using your Menu component. Just a few features that I think would provide value to others. 1) BlazoredSubMenu - for the HeaderTemplate provide a bool option to always...
I setup Manager under https://localhost:44301/manager I setup Admin under https://localhost:44301/admin Each site is using Cookie Authentication with separate startup code. Each site is using UseOpenIdConnectAuthentication Each site is using AdditionalSignOutType...
Summary of changes - Added ResetPasswordAsync to IIdentityManagerService. #214
I would like to add ResetPasswordAsync to IIdentityManagerService. I've already created a PR for the Implementation in IdentityManager.AspNetIdentity. https://github.com/IdentityManager/IdentityManager.AspNetIdentity/pull/29/commits/7849a9eccb068843b3cd0ce5c5f2e04b606db9c1
I setup Admin under https://localhost:44301/admin I setup Manager under https://localhost:44301/manager Each site is using Cookie Authentication with separate startup code. Each site is using UseOpenIdConnectAuthentication Each site is using AdditionalSignOutType...
If you set the following configuration for the AspNetIdentity UserManager. ``` manager.UserValidator = new UserValidator(manager) { AllowOnlyAlphanumericUserNames = false, RequireUniqueEmail = true }; ``` If you call the method _identityManagerService.CreateUserAsync()....
I think it would be a good idea to expose 3 of the lower level methods from the UserManager class wrapped by the AspNetIdentityManagerService class. Methods to expose (FindByEmailAsync, FindByNameAsync...
Summary of the changes - Exposed UserManager methods GeneratePasswordResetTokenAsync, FindByEmailAsync and FindByNameAsync. #28