All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 46s
13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
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)
|
|
}
|
|
})
|