From 4664d697fdfb547099b77556da5890a609cd94e5 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Thu, 19 Jan 2023 21:30:00 -0700 Subject: [PATCH] feat: restrict to only pull PlanActions for issuer --- src/views/ProjectsView.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/ProjectsView.vue b/src/views/ProjectsView.vue index d2ba3d0..5059df2 100644 --- a/src/views/ProjectsView.vue +++ b/src/views/ProjectsView.vue @@ -82,7 +82,10 @@ export default class ProjectsView extends Vue { async LoadProjects(identity: IIdentifier) { const endorserApiServer = AppString.DEFAULT_ENDORSER_API_SERVER; - const url = endorserApiServer + "/api/claim/?claimContents=" + identity.did; + const url = + endorserApiServer + + "/api/claim/?claimType=PlanAction&issuer=" + + identity.did; const token = await accessToken(identity); const headers = { "Content-Type": "application/json",