redirect to fix test

This commit is contained in:
D070615
2025-07-04 13:40:25 +02:00
parent ef9a891445
commit 7c33813102

View File

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