Pull only PlanAction records for this issuer #6

Merged
anomalist merged 2 commits from pull-only-plans into master 2023-01-20 05:15:27 +00:00
Showing only changes of commit 4664d697fd - Show all commits

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