feat(bff): GET /beheer/catalogi/zaaktypen proxies the ACL for beheerders (refs #130)
This commit is contained in:
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user