Fix user scopes payload issue

This commit is contained in:
pasindu 2024-02-02 23:46:47 +05:30
parent ce18849691
commit f7f0a4a2a4

View File

@ -63,8 +63,8 @@ public class PermissionScopeHandler extends HttpServlet {
JsonNode authDataScope = authData.getScope();
ObjectMapper mapper = new ObjectMapper();
Map<String, Object> nodeMap = new HashMap<>();
nodeMap.put(HandlerConstants.USER_SCOPES, authDataScope);
Map<String, String> nodeMap = new HashMap<>();
nodeMap.put(HandlerConstants.USER_SCOPES, authDataScope.asText().replace("\"", ""));
proxyResponse.setCode(HttpStatus.SC_OK);
proxyResponse.setStatus(ProxyResponse.Status.SUCCESS);
proxyResponse.setData(mapper.convertValue(nodeMap, JsonNode.class));