From ecb01a8e0893d78ad0689c7f1b58ab431776a1d7 Mon Sep 17 00:00:00 2001 From: "m.lettere" Date: Tue, 23 Nov 2021 12:32:46 +0100 Subject: [PATCH] fix --- templates/add_workspace_client_to_context.json.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/add_workspace_client_to_context.json.j2 b/templates/add_workspace_client_to_context.json.j2 index 538840b..fbe9411 100644 --- a/templates/add_workspace_client_to_context.json.j2 +++ b/templates/add_workspace_client_to_context.json.j2 @@ -101,8 +101,8 @@ "taskReferenceName": "extract_context", "type": "LAMBDA", "inputParameters": { - "client" : "${lookup_context.output.body[0]}", - "scriptExpression": "function e(v){ return (v == null || v == undefined)}; if(e($.client)) throw('Workspace client not found'); else return { client : $.client, id : $.client.id}" + "client" : "${lookup_context.output.body}", + "scriptExpression": "function e(v){ return (v.length === 0)}; if(e($.client)) throw('Workspace client not found'); else return { client : $.client[0], id: $.client[0].id : }" } }, { @@ -110,7 +110,7 @@ "type" : "SIMPLE", "taskReferenceName": "retrieve_member_role", "inputParameters" : { - "url" : "${init.input.keycloak_admin}/clients/${extract_context.id}/roles/Member", + "url" : "${init.input.keycloak_admin}/clients/${extract_context.output.result.id}/roles/Member", "method" :"GET", "headers" : { "Authorization" : "Bearer ${authorize.output.body.access_token}",