mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 12:32:35 +00:00
12 lines
200 B
JavaScript
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);
|
|
},
|
|
};
|