Skip to content

Commit

Permalink
Merge pull request #166 from supertokens/fix/oauth/jti-listing
Browse files Browse the repository at this point in the history
fix: jti listing
  • Loading branch information
porcellus authored Oct 28, 2024
2 parents d825985 + 06debd1 commit 80e6556
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void addOAuthLogoutChallenge(AppIdentifier appIdentifier, String challeng

public void deleteOAuthLogoutChallengesBefore(long time) throws StorageQueryException;

public void createOrUpdateOAuthSession(AppIdentifier appIdentifier, String gid, String clientId, String externalRefreshToken, String internalRefreshToken, String sessionHandle, List<String> jtis, long exp) throws StorageQueryException, OAuthClientNotFoundException;
public void createOrUpdateOAuthSession(AppIdentifier appIdentifier, String gid, String clientId, String externalRefreshToken, String internalRefreshToken, String sessionHandle, String jti, long exp) throws StorageQueryException, OAuthClientNotFoundException;

public String getRefreshTokenMapping(AppIdentifier appIdentifier, String externalRefreshToken) throws StorageQueryException;

Expand Down

0 comments on commit 80e6556

Please sign in to comment.