tibi-docs/api/hooks/ssr/post_bind.js

17 lines
320 B
JavaScript
Raw Normal View History

2023-02-21 14:00:56 +01:00
const utils = require("../lib/utils")
;(function () {
if (context.request().query("clear")) {
utils.clearSSRCache()
throw {
status: 200,
message: "cache cleared",
}
}
throw {
status: 500,
message: "ssr is only a dummy collection",
}
})()