mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-12 16:06:38 +00:00
9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default async function ApiKeysPage(props: {
|
|
params: Promise<{ apiKeyId: string }>;
|
|
}) {
|
|
const params = await props.params;
|
|
redirect(`/admin/api-keys/${params.apiKeyId}/permissions`);
|
|
}
|