From bf7ee630d01f732f4f666f4206c66316577edf36 Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Wed, 12 Nov 2025 15:58:23 +0800 Subject: [PATCH] feat(meeting): enable selecting all projects in meeting setup Update loadProjects to fetch all projects instead of only user's projects by switching from plansByIssuer to plans endpoint. --- src/views/OnboardMeetingSetupView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/OnboardMeetingSetupView.vue b/src/views/OnboardMeetingSetupView.vue index de15d0d3..a37c0aa4 100644 --- a/src/views/OnboardMeetingSetupView.vue +++ b/src/views/OnboardMeetingSetupView.vue @@ -789,7 +789,7 @@ export default class OnboardMeetingView extends Vue { async loadProjects() { try { const headers = await getHeaders(this.activeDid); - const url = `${this.apiServer}/api/v2/report/plansByIssuer`; + const url = `${this.apiServer}/api/v2/report/plans`; const resp = await this.axios.get(url, { headers }); if (resp.status === 200 && resp.data.data) {