feat(acl): GET /catalogi/zaaktypen lists published zaaktypen (refs #130)

This commit is contained in:
not
2026-07-24 10:44:48 +02:00
parent a62a09bdff
commit 7368bf3bce
3 changed files with 18 additions and 6 deletions
+1 -2
View File
@@ -45,8 +45,7 @@ public sealed class AclService(IZaakGateway gateway, AclDefaults defaults, IZaak
/// <summary>The published zaaktypen, for the beheer catalogus viewer (S-15a). Read-only passthrough:
/// no default-fill, the ACL is simply the only code allowed to read ZGW (§8.1).</summary>
public Task<IReadOnlyList<ZaaktypeSummary>> ListZaaktypenAsync(CancellationToken ct = default) =>
// ponytail: stub for the red test; real passthrough lands in the green commit.
Task.FromResult<IReadOnlyList<ZaaktypeSummary>>([]);
gateway.ListZaaktypenAsync(ct);
/// <summary>The zaak's reference (its ZGW identificatie), for the read projection (#78).</summary>
public Task<string> GetZaakReferenceAsync(Uri zaakUrl, CancellationToken ct = default)