12 lines
200 B
JavaScript
Raw Normal View History

'use strict';
/**
* Read the documentation () to implement custom controller functions
*/
2019-06-16 19:45:42 +02:00
module.exports = {
async find(ctx) {
return await strapi.query('articles').find(ctx.query);
},
};