mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-15 02:01:55 +02:00
16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Provisioning"
|
|
};
|
|
|
|
type ProvisioningPageProps = {
|
|
params: Promise<{ orgId: string }>;
|
|
};
|
|
|
|
export default async function ProvisioningPage(props: ProvisioningPageProps) {
|
|
const params = await props.params;
|
|
redirect(`/${params.orgId}/settings/provisioning/keys`);
|
|
}
|