mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-24 17:52:33 +00:00
14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Identity Provider"
|
|
};
|
|
|
|
export default async function IdpPage(props: {
|
|
params: Promise<{ orgId: string; idpId: string }>;
|
|
}) {
|
|
const params = await props.params;
|
|
redirect(`/${params.orgId}/settings/idp/${params.idpId}/general`);
|
|
}
|