Phase4
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 9s
CI / Go — edge-gateway build (push) Successful in 13s

This commit is contained in:
smueller
2026-06-26 12:32:27 +02:00
parent 9b061c3ee7
commit 4262464cd5
101 changed files with 4024 additions and 74 deletions

View File

@@ -0,0 +1,13 @@
import { setRequestLocale } from "next-intl/server";
import { ServerBackups } from "@/components/servers/server-backups";
interface ServerBackupsPageProps {
params: Promise<{ locale: string; id: string }>;
}
export default async function ServerBackupsPage({ params }: ServerBackupsPageProps) {
const { locale, id } = await params;
setRequestLocale(locale);
return <ServerBackups serverId={id} />;
}

View File

@@ -0,0 +1,13 @@
import { setRequestLocale } from "next-intl/server";
import { ServerWorlds } from "@/components/servers/server-worlds";
interface ServerWorldsPageProps {
params: Promise<{ locale: string; id: string }>;
}
export default async function ServerWorldsPage({ params }: ServerWorldsPageProps) {
const { locale, id } = await params;
setRequestLocale(locale);
return <ServerWorlds serverId={id} />;
}