Skip to content

Commit

Permalink
Mark VerifyPasswordResetTokenAsync endpoint as virtual.
Browse files Browse the repository at this point in the history
Resolve #19138
  • Loading branch information
maliming authored Feb 27, 2024
1 parent c286cb5 commit 67db1ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public virtual Task SendPasswordResetCodeAsync(SendPasswordResetCodeDto input)

[HttpPost]
[Route("verify-password-reset-token")]
public Task<bool> VerifyPasswordResetTokenAsync(VerifyPasswordResetTokenInput input)
public virtual Task<bool> VerifyPasswordResetTokenAsync(VerifyPasswordResetTokenInput input)
{
return AccountAppService.VerifyPasswordResetTokenAsync(input);
}
Expand Down

0 comments on commit 67db1ab

Please sign in to comment.