I\'ve created a custom IUserStore
for my application. I\'ve implemented the interfaces I need,
IUserStore,
Actually the IUserTwoFactorStore
interface is really simple, so far my implementation (I don't use two factor auth either) is this:
....
public Task GetTwoFactorEnabledAsync(User user)
{
return Task.FromResult(false);
}
public Task SetTwoFactorEnabledAsync(User user, bool enabled)
{
throw new NotImplementedException();
}
It works, although I just did it couple minutes ago and didn't test whole app thoroughly.