traxxx-web/pages/scene/+onBeforeRender.js

18 lines
339 B
JavaScript

import { fetchScenesById } from '#/src/scenes.js';
export async function onBeforeRender(pageContext) {
const [scene] = await fetchScenesById([Number(pageContext.routeParams.sceneId)], {
reqUser: pageContext.user,
actorStashes: true,
});
return {
pageContext: {
title: scene.title,
pageProps: {
scene,
},
},
};
}