updated Identity and managment service

This commit is contained in:
2025-05-01 15:25:15 +03:00
parent e815251123
commit 1920c2a25d
69 changed files with 1672 additions and 462 deletions

View File

@@ -0,0 +1,9 @@
import { NextRequest } from "next/server";
// Import the createApplication function when it's available
// import { createApplication } from "@/apicalls/application/application";
import { createCreateHandler } from "../../utils";
// Create a handler for creating applications using our utility function
// When createApplication is available, pass it as the first argument
// No need for field validation as it's already handled by Zod at the page level
export const POST = createCreateHandler();