Skip to content

Commit

Permalink
Merge pull request #19139 from abpframework/maliming-patch-3
Browse files Browse the repository at this point in the history
Mark `VerifyPasswordResetTokenAsync` endpoint as `virtual`.
  • Loading branch information
realLiangshiwei authored Feb 27, 2024
2 parents c286cb5 + 67db1ab commit 01b98d3
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 01b98d3

Please sign in to comment.