13 lines
254 B
JavaScript
Raw Normal View History

2019-06-13 15:36:05 +02:00
'use strict';
/**
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/guides/services.html#core-services)
* to customize this service
*/
2019-07-29 18:00:01 +02:00
module.exports = {
find(params) {
2019-07-30 11:22:44 +02:00
return strapi.query('article').find(params);
2019-07-29 18:00:01 +02:00
},
};