Thank you David,
Yes it works fine with the Admin interface, but once I try to get user profile in MVC code, flag is always false, I am trying like this:
For Login:
var user = await KenticoUserManager.FindByNameAsync(username);
if (user.TwoFactorEnabled)
{
// TODO
}
For Registration:
User user = new User
{
TwoFactorEnabled = true,
};
Even I tried enabling the MultiFactor from Admin Interface using User's Module.
Looking forward to you quick guidance.
Thank you,
Jahan