This commit is contained in:
Ulysse Carion 2024-05-24 16:23:33 -07:00
parent dd8632ffa3
commit 4b670ba2e9
No known key found for this signature in database
GPG Key ID: 34940F90558D249A

View File

@ -1,6 +1,4 @@
import type { Config, Context } from "@netlify/functions"
export default async (req: Request, context: Context) => {
export default async (req, context) => {
const formData = await req.formData()
let query = ""
@ -16,6 +14,6 @@ export default async (req: Request, context: Context) => {
})
}
export const config: Config = {
export const config = {
path: "/saml-post/:appId"
};