Skip to content

Commit

Permalink
Fix tenant name arg in saml start (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
orius123 committed Apr 17, 2024
1 parent c8863b2 commit bb439bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SAMLServiceImpl extends AuthenticationServiceImpl implements SAMLService {
@Override
public String start(String tenant, String returnURL, LoginOptions loginOptions)
throws DescopeException {
Map<String, String> request = mapOf("provider", tenant);
Map<String, String> request = mapOf("tenant", tenant);
if (StringUtils.isNotBlank(returnURL)) {
request.put("redirectURL", returnURL);
}
Expand Down

0 comments on commit bb439bf

Please sign in to comment.