Files
cloud-cap-samples/bookshop/srv/user-service.cds
2022-05-19 12:16:11 +02:00

16 lines
233 B
Plaintext

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