fix tests

This commit is contained in:
D070615
2025-07-04 13:37:49 +02:00
parent 8230757540
commit ef9a891445

View File

@@ -8,7 +8,7 @@ service CatalogService @(path:'/browse') {
/** For display in details pages */
@readonly entity Books as projection on my.Books { *,
author.name as author
} excluding { createdBy, modifiedBy };
} excluding { createdBy, modifiedBy, contents };
@requires: 'authenticated-user'
action submitOrder ( book: Books:ID, quantity: Integer ) returns { stock: Integer };