Files
cloud-cap-samples/bookshop/srv/user-service.cds
2022-09-21 16:33:29 +02:00

16 lines
255 B
Plaintext

/**
* Exposes user information
*/
service UserService {
/**
* The current user
*/
@odata.singleton entity me @cds.persistence.skip {
id : String; // user id
locale : String;
tenant : String;
}
action login() returns me;
}