'use strict'; module.exports = { async count() { const countArtiste = await strapi.documents('api::artiste.artiste').count({ publicationState: 'live' }); const countParole = await strapi.documents('api::parole.parole').count({ publicationState: 'live' }); return {countArtiste, countParole}; } };