Files
api.pawol.nu/src/api/stats/controllers/stats.js
T

10 lines
267 B
JavaScript
Raw Normal View History

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