IdentityManager.AspNetIdentity icon indicating copy to clipboard operation
IdentityManager.AspNetIdentity copied to clipboard

ASP.NET Identity support for Thinktecture IdentityManager

Results 9 IdentityManager.AspNetIdentity issues
Sort by recently updated
recently updated
newest added

How can i search using Email in "All Users" pages? Please let me know if we have any option

Hey, i really like this iddentiy manager, but sadly i cannot change the css to match it to my application.. ist here a way i can do that, or do...

Hi Brock, I really like IdentityManager, but its dependencies are a bit dated right now. I want it to work with ASP .NET Core v1.0.4 and the latest version of...

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()....

bug

…by SetUserProperty Solves issue https://github.com/IdentityManager/IdentityManager/issues/133 in identitymanager

I think it would be a nice idea to have a DropDown for the foreing key properties on the user model. For example DepartmentId

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...

enhancement

I start by updating user's password in UI ![image](https://cloud.githubusercontent.com/assets/265059/13239058/99f28cbc-d9a5-11e5-95b7-ada365949330.png) This results in Http Put request to following URL [https://localhost:44340/idm/api/users/ab879063-a184-495b-a99b-4a85e8c96144/properties/cGFzc3dvcmQ] It then goes to `await this.idmService.SetUserPropertyAsync(subject, type, value)` and to `SetUserProperty(metadata.UserMetadata.UpdateProperties,...

bug

Summary of the changes - Exposed UserManager methods GeneratePasswordResetTokenAsync, FindByEmailAsync and FindByNameAsync. #28