File size: 321 Bytes
2cb745f 41f29a4 2cb745f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { base } from "$app/paths";
import { redirect } from "@sveltejs/kit";
export async function load({ parent, params }) {
const data = await parent();
const model = data.models.find(({ id }) => id === params.model);
if (!model || model.unlisted) {
throw redirect(302, `${base}/settings`);
}
return data;
}
|