* Remove OData v2 show case: Genres TreeView * Refactored bookstore and fiori services: consolidate routing and remove deprecated files * Add Jest configuration file with silent mode enabled * Refactor test files: streamline imports and remove redundant code * Change price field type to Price for better clarity and precision * Example for separation of concerns: access-control.cds
7 lines
231 B
Plaintext
7 lines
231 B
Plaintext
using { sap.capire.bookshop as my } from '../db/schema';
|
|
service AdminService @(path:'/admin') {
|
|
entity Authors as projection on my.Authors;
|
|
entity Books as projection on my.Books;
|
|
entity Genres as projection on my.Genres;
|
|
}
|