mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 08:46:59 +00:00
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default async function ApiKeysPage(props: {
|
|
params: Promise<{ orgId: string; apiKeyId: string }>;
|
|
}) {
|
|
const params = await props.params;
|
|
redirect(`/${params.orgId}/settings/api-keys/${params.apiKeyId}/permissions`);
|
|
}
|