Skip to content

Commit

Permalink
Make ValidateRefreshTokenAsync virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Dec 14, 2023
1 parent 3b5bd18 commit 8c2fb51
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 8c2fb51

Please sign in to comment.