feat: restrict to only pull PlanActions for issuer

This commit is contained in:
2023-01-19 21:30:00 -07:00
parent fa01125c84
commit 4664d697fd

View File

@@ -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",