Skip to content

Commit

Permalink
Merge pull request #1488 from DuendeSoftware/joe/validate-token-virtual
Browse files Browse the repository at this point in the history
Make ValidateRefreshTokenAsync virtual
  • Loading branch information
brockallen authored Dec 14, 2023
2 parents 3b5bd18 + 8c2fb51 commit a57f958
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public ServerSideSessionRefreshTokenService(


/// <inheritdoc/>
public async Task<TokenValidationResult> ValidateRefreshTokenAsync(string tokenHandle, Client client)
public virtual async Task<TokenValidationResult> ValidateRefreshTokenAsync(string tokenHandle, Client client)
{
var result = await Inner.ValidateRefreshTokenAsync(tokenHandle, client);

Expand Down

0 comments on commit a57f958

Please sign in to comment.