Shazwazza / UmbracoIdentity

ASP.NET Identity implementation for Umbraco's native member data
MIT License
111 stars 58 forks source link

Do not explicitly override the "Supports" flags such as SupportsUserLockout #128

Closed Shazwazza closed 3 years ago

Shazwazza commented 3 years ago

In the user manager we were overriding and explicitly returning false for the "Support" flags such as SupportsUserLockout which makes extending this limited.

These feature flags are already handled by aspnet's base class and is determined based on the interfaces implemented in the user store. So the explicit false values are now removed making it easier to just implement the requirements on the user store without needing to override on the user manager too.