wm-AllKids-tibi2023/api/hooks/config.js

25 lines
688 B
JavaScript
Raw Normal View History

2023-09-17 13:24:39 +02:00
module.exports = {
ssrValidatePath: function (path) {
// validate if path ssr rendering is ok, -1 = NOTFOUND, 0 = NO SSR, 1 = SSR
// pe. use context.readCollection("product", {filter: {path: path}}) ... to validate dynamic urls
// / is de home
if (path == "/") return 1
// filter for path or alternativePaths
const resp = context.db.find("content", {
filter: {
2023-12-06 21:11:49 +01:00
$or: [{ path }],
2023-09-17 13:24:39 +02:00
},
selector: { _id: 1 },
})
if (resp && resp.length) {
return 1
}
// not found
return -1
},
ssrAllowedAPIEndpoints: ["content", "medialib"],
}