feat(editor): Insights dashboard (#13739)

Co-authored-by: Guillaume Jacquart <jacquart.guillaume@gmail.com>
Co-authored-by: Raúl Gómez Morales <raul00gm@gmail.com>
This commit is contained in:
Csaba Tuncsik
2025-04-03 16:24:44 +02:00
committed by GitHub
parent 7379f44896
commit 90ba680631
30 changed files with 1872 additions and 102 deletions

View File

@@ -100,12 +100,16 @@ export async function initializeAuthenticatedFeatures(
console.error('Failed to initialize cloud plan store:', e);
}
}
if (insightsStore.isSummaryEnabled) {
void insightsStore.summary.execute();
}
await Promise.all([
projectsStore.getMyProjects(),
projectsStore.getPersonalProject(),
projectsStore.getProjectsCount(),
rolesStore.fetchRoles(),
insightsStore.summary.execute(),
]);
authenticatedFeaturesInitialized = true;