From b5e94c99c8a5a1024cc4cc1e2903874d26dca2a4 Mon Sep 17 00:00:00 2001 From: Paul Latzelsperger <paul.latzelsperger@beardyinc.com> Date: Wed, 13 Nov 2024 07:34:39 +0100 Subject: [PATCH] chore: add credential ID dummy to request --- deployment/postman/MVD.postman_collection.json | 9 +++++---- launchers/identity-hub/build.gradle.kts | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/deployment/postman/MVD.postman_collection.json b/deployment/postman/MVD.postman_collection.json index 5a90c39..e0f6498 100644 --- a/deployment/postman/MVD.postman_collection.json +++ b/deployment/postman/MVD.postman_collection.json @@ -1,9 +1,9 @@ { "info": { - "_postman_id": "1d81d8db-ffb2-417b-83ca-50da1b42a5df", + "_postman_id": "d7d568f5-e178-4d6c-b74b-434a8f7530a6", "name": "MVD+IATP", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", - "_exporter_id": "23917208" + "_exporter_id": "647585" }, "item": [ { @@ -2056,7 +2056,7 @@ "method": "GET", "header": [], "url": { - "raw": "{{CS_URL}}/api/identity/v1alpha/participants/{{PARTICIPANT_ID}}/credentials", + "raw": "{{CS_URL}}/api/identity/v1alpha/participants/{{PARTICIPANT_ID}}/credentials/CREDENTIAL-ID", "host": [ "{{CS_URL}}" ], @@ -2066,7 +2066,8 @@ "v1alpha", "participants", "{{PARTICIPANT_ID}}", - "credentials" + "credentials", + "CREDENTIAL-ID" ] } }, diff --git a/launchers/identity-hub/build.gradle.kts b/launchers/identity-hub/build.gradle.kts index c691e25..39a4c44 100644 --- a/launchers/identity-hub/build.gradle.kts +++ b/launchers/identity-hub/build.gradle.kts @@ -31,7 +31,7 @@ dependencies { runtimeOnly(libs.edc.bom.identithub.sql) runtimeOnly(libs.edc.sts.accountservice.remote) println("This runtime compiles with a remote STS, Hashicorp Vault and PostgreSQL. You will need properly configured STS, Postgres and HCV instances.") - }else{ + } else { runtimeOnly(libs.edc.bom.identithub.sts) } -- GitLab