Prepare for new protocol handling
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* Exposes user information
|
||||
*/
|
||||
service UserService {
|
||||
service UserService @(path: '/user') {
|
||||
/**
|
||||
* The current user
|
||||
*/
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
service say {
|
||||
service say @(path: '/say') {
|
||||
function hello (to:String) returns String;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user