Merge pull request #524 from SAP-samples/prepare-for-new-protocol-handling

Prepare for new protocol handling
This commit is contained in:
Heiko Witteborg
2023-06-14 11:42:03 +02:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
using { sap.capire.bookshop as my } from '../db/schema';
service AdminService @(requires:'admin') {
service AdminService @(requires:'admin', path:'/admin') {
entity Books as projection on my.Books;
entity Authors as projection on my.Authors;
}

View File

@@ -1,7 +1,7 @@
/**
* Exposes user information
*/
service UserService {
service UserService @(path: '/user') {
/**
* The current user
*/

View File

@@ -1,3 +1,3 @@
service say {
service say @(path: '/say') {
function hello (to:String) returns String;
}