inject scopes

pull/306/merge
Justin Richer 12 years ago
parent f9d50db1f1
commit 1144d511af

@ -210,6 +210,13 @@ public class ConnectAuthorizationRequestManager implements AuthorizationRequestM
}
}
String scope = claims.getClaimAsString("scope");
if (scope != null) {
if (inputParams.containsKey("scope") == false) {
parameters.put("scope", scope);
}
}
return parameters;
}

Loading…
Cancel
Save