Alexandre Bodin 5777d0de35 v1 bookshelf
2019-07-02 13:28:16 +02:00

12 lines
200 B
JavaScript

'use strict';
/**
* Read the documentation () to implement custom controller functions
*/
module.exports = {
async find(ctx) {
return await strapi.query('articles').find(ctx.query);
},
};