Skip to content
Shannon Deminick edited this page Dec 15, 2020 · 13 revisions

Lists some known limitations and issues to be aware of

Not implemented yet

  • ASP.Net Identity Queryable users
  • Lockout support
  • Two factor auth support
  • Phone number support
  • Email confirmation
  • Forgot/reset password

All of these limitations are in the UmbracoIdentity.UmbracoMembersUserManager<T> class, but you could create your own implementation of this class and override the required methods. See Custom Startup/Configuration and Extending for further details on this.

Passwords

This is meant to work with existing members in Umbraco, therefore this does not take advantage of the new standard of salting and hashing of passwords that is available with OWIN and ASP.Net Identity.

You can however configure this in any way that you want by creating your own instance of UmbracoMembersUserManager and assigning your own IPasswordHasher.