Actualizar Metabase Debug: usar config centralizado y agregar tab de Informe Ingresos
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 46s

This commit is contained in:
2025-10-27 17:14:37 -06:00
parent 9cadbb0a66
commit a243710fe8
2 changed files with 97 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
import { METABASE_QUERIES } from '../../config/metabase-queries'
/**
* Expose query configuration to the frontend
* Returns the expected query names for panorama and informe
*/
export default defineEventHandler(() => {
return {
panorama: Object.values(METABASE_QUERIES.panorama),
informe: Object.values(METABASE_QUERIES.informe)
}
})