feat(bff): GET /beheer/catalogi/zaaktypen proxies the ACL for beheerders (refs #130)

This commit is contained in:
not
2026-07-24 10:51:22 +02:00
parent b0485a7724
commit 9eb51b8b3e
4 changed files with 115 additions and 4 deletions
+44 -1
View File
@@ -227,10 +227,53 @@
}
}
}
},
"/beheer/catalogi/zaaktypen": {
"get": {
"tags": [
"Bff.Api"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BeheerZaaktype"
}
}
}
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
}
}
}
}
},
"components": {
"schemas": {
"BeheerZaaktype": {
"required": [
"identificatie",
"omschrijving"
],
"type": "object",
"properties": {
"identificatie": {
"type": "string"
},
"omschrijving": {
"type": "string"
}
}
},
"CurrentRegistration": {
"required": [
"registrationId",
@@ -343,4 +386,4 @@
"name": "Bff.Api"
}
]
}
}