Skip to content

Commit

Permalink
N21-1273 removed wrong bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
arnegns committed Oct 11, 2023
1 parent 558c89d commit 7ecbaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ const getLogoutUrl = (req, res, logoutEndpoint, idTokenHint, redirect) => {
const logoutUrl = new URL(logoutEndpoint);
logoutUrl.searchParams.append('id_token_hint', idTokenHint);

const postLoginRedirect = `${Configuration.get('HOST')}/${redirect || 'dashboard'}}`;
const postLoginRedirect = `${Configuration.get('HOST')}/${redirect || 'dashboard'}`;
logoutUrl.searchParams.append('post_logout_redirect_uri', postLoginRedirect);

return logoutUrl.toString();
Expand Down

0 comments on commit 7ecbaf7

Please sign in to comment.