From 50c64fc91929e4ed2754208e781e8c4ea189dc19 Mon Sep 17 00:00:00 2001 From: Scott Dickerson Date: Tue, 16 Jul 2024 08:27:06 -0400 Subject: [PATCH] :ghost: Update hack add data for identity (#724) Using the hack/add data is convenient way to populate a new dev environment. The identity script did not create valid identities. Fields that needed to change to match current expectations have been made. Now these identities will show up when they're attached to an application. Signed-off-by: Scott J Dickerson --- hack/add/identity.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/add/identity.sh b/hack/add/identity.sh index aa4526ff..dd0ed459 100755 --- a/hack/add/identity.sh +++ b/hack/add/identity.sh @@ -4,7 +4,7 @@ host="${HOST:-localhost:8080}" curl -X POST ${host}/identities -d \ '{ - "kind": "git", + "kind": "source", "name":"test-git", "description": "Forklift", "user": "userA", @@ -15,7 +15,7 @@ curl -X POST ${host}/identities -d \ curl -X POST ${host}/identities -d \ '{ - "kind": "mvn", + "kind": "maven", "name":"test-mvn", "description": "Forklift", "user": "userA",