We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hey,
we have problems when we want to reset the password using the email reset password request:
in this code UserEntity.Current is null when request.code is not empty:
Error: Value cannot be null. (Parameter 'lite')
**if (string.IsNullOrEmpty(request.newPassword)) return ModelError("newPassword", LoginAuthMessage.PasswordMustHaveAValue.NiceToString());
var error = UserEntity.OnValidatePassword(request.newPassword, UserEntity.Current.Retrieve()); if (error != null) return ModelError("newPassword", error);
var rpr = ResetPasswordRequestLogic.ResetPasswordRequestExecute(request.code, request.newPassword);**
Is it a general problem or only for us?
Regards
Imad
Hey,
we have problems when we want to reset the password using the email reset password request:
in this code UserEntity.Current is null when request.code is not empty:
Error: Value cannot be null. (Parameter 'lite')
**if (string.IsNullOrEmpty(request.newPassword))
return ModelError("newPassword", LoginAuthMessage.PasswordMustHaveAValue.NiceToString());
var error = UserEntity.OnValidatePassword(request.newPassword, UserEntity.Current.Retrieve());
if (error != null)
return ModelError("newPassword", error);
var rpr = ResetPasswordRequestLogic.ResetPasswordRequestExecute(request.code, request.newPassword);**
Is it a general problem or only for us?
Regards
Imad