mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-17 06:24:32 +00:00
🚧 wip
This commit is contained in:
12
server/private/routers/resource/createResourcePolicy.ts
Normal file
12
server/private/routers/resource/createResourcePolicy.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { Request, Response, NextFunction } from "express";
|
||||||
|
import z from "zod";
|
||||||
|
|
||||||
|
const createResourcePolicyParamsSchema = z.strictObject({
|
||||||
|
orgId: z.string()
|
||||||
|
});
|
||||||
|
|
||||||
|
export async function createResourcePolicy(
|
||||||
|
req: Request,
|
||||||
|
res: Response,
|
||||||
|
next: NextFunction
|
||||||
|
) {}
|
||||||
@@ -13,3 +13,4 @@
|
|||||||
|
|
||||||
export * from "./getMaintenanceInfo";
|
export * from "./getMaintenanceInfo";
|
||||||
export * from "./listResourcePolicies";
|
export * from "./listResourcePolicies";
|
||||||
|
export * from "./createResourcePolicy";
|
||||||
|
|||||||
Reference in New Issue
Block a user