mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-08 17:29:54 +00:00
🚧 list policies endpoint + list policies table
This commit is contained in:
14
src/app/[orgId]/settings/resources/policies/page.tsx
Normal file
14
src/app/[orgId]/settings/resources/policies/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { getTranslations } from "next-intl/server";
|
||||
|
||||
export interface ResourcePoliciesPageProps {
|
||||
params: Promise<{ orgId: string }>;
|
||||
searchParams: Promise<{ view?: string }>;
|
||||
}
|
||||
|
||||
export default async function ResourcePoliciesPage(
|
||||
props: ResourcePoliciesPageProps
|
||||
) {
|
||||
const params = await props.params;
|
||||
const t = await getTranslations();
|
||||
return <></>;
|
||||
}
|
||||
Reference in New Issue
Block a user