Add board feature

This commit is contained in:
julien vdb
2025-03-28 14:52:43 +01:00
parent 9d4ecb2733
commit c6d5936639
23 changed files with 3485 additions and 11 deletions
+18
View File
@@ -0,0 +1,18 @@
/**
* board controller
*/
import { factories } from "@strapi/strapi";
export default factories.createCoreController(
"api::board.board",
({ strapi }) => ({
async update(ctx) {
return super.update(ctx);
},
async find(ctx) {
console.log(ctx);
return super.find(ctx);
},
})
);