Spaces:
Running
Running
| 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; | |
| } | |