Skip to content

Commit

Permalink
Change the saml acs endpoint to use _plugin instead of legacy _opendi…
Browse files Browse the repository at this point in the history
…stro

Signed-off-by: Ryan Liang <[email protected]>
  • Loading branch information
RyanL1997 committed Aug 27, 2023
1 parent d7eabcf commit 74bb89e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ private SingleLogoutService findSingleLogoutService(IDPSSODescriptor idpSsoDescr
private String buildAssertionConsumerEndpoint(String dashboardsRoot) {

if (dashboardsRoot.endsWith("/")) {
return dashboardsRoot + "_opendistro/_security/saml/acs";
return dashboardsRoot + "_plugin/_security/saml/acs";
} else {
return dashboardsRoot + "/_opendistro/_security/saml/acs";
return dashboardsRoot + "/_plugin/_security/saml/acs";
}
}

Expand Down

0 comments on commit 74bb89e

Please sign in to comment.