mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-11 21:41:41 +02:00
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "User"
|
|
};
|
|
|
|
export default async function UserPage(props: {
|
|
params: Promise<{ orgId: string; userId: string }>;
|
|
}) {
|
|
const { orgId, userId } = await props.params;
|
|
redirect(`/${orgId}/settings/access/users/${userId}/general`);
|
|
}
|