ff-webpage-cms/src/api/page/routes/page.ts

17 lines
228 B
TypeScript
Raw Normal View History

2024-10-30 14:50:13 +01:00
/**
* page router
*/
import { factories } from '@strapi/strapi';
export default factories.createCoreRouter('api::page.page', {
config: {
find: {
auth: false
},
findOne: {
auth: false
},
}
});