Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Oct 30, 2024
1 parent 4d7baa1 commit 5695a60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ The following changes have been implemented but not released yet:
storage (using `getSessionFromStorage`), which is the typical way server-side
sessions are retrieved.


## [2.2.6](https://github.com/inrupt/solid-client-authn-js/releases/tag/v2.2.6) - 2024-09-18

### Bugfix
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/login/oidc/__mocks__/IOidcOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const standardOidcOptions: IOidcOptions = {
claimsSupported: [],
scopesSupported: ["openid"],
grantTypesSupported: ["authorization_code"],
endSessionEndpoint: "https://example.com/end-session"
endSessionEndpoint: "https://example.com/end-session",
},
client: {
clientId: "coolApp",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import {
generateDpopKeyPair,
PREFERRED_SIGNING_ALG,
buildAuthenticatedFetch,
maybeBuildRpInitiatedLogout
maybeBuildRpInitiatedLogout,
} from "@inrupt/solid-client-authn-core";
import type { JWK } from "jose";
import { importJWK } from "jose";
Expand Down Expand Up @@ -225,8 +225,9 @@ export default class RefreshTokenOidcHandler implements IOidcHandler {
fetch: accessInfo.fetch,
getLogoutUrl: maybeBuildRpInitiatedLogout({
idTokenHint: accessInfo.idToken,
endSessionEndpoint: oidcLoginOptions.issuerConfiguration.endSessionEndpoint,
})
endSessionEndpoint:
oidcLoginOptions.issuerConfiguration.endSessionEndpoint,
}),
});
}
}

0 comments on commit 5695a60

Please sign in to comment.