add create, delete, list for idp org policy

This commit is contained in:
miloschwartz
2025-04-15 10:16:15 -04:00
parent e86640547e
commit 432f38333e
9 changed files with 375 additions and 14 deletions

View File

@@ -18,17 +18,11 @@ const paramsSchema = z
registry.registerPath({
method: "delete",
path: "/org/{orgId}/idp/oidc",
description: "Create an OIDC IdP for an organization.",
tags: [OpenAPITags.Org, OpenAPITags.Idp],
path: "/idp/{idpId}",
description: "Delete IDP.",
tags: [OpenAPITags.Idp],
request: {
body: {
content: {
"application/json": {
schema: bodySchema
}
}
}
params: paramsSchema
},
responses: {}
});