Files
cloud-cap-samples/bookshop/srv/user-service.cds
2022-03-31 09:49:47 +02:00

17 lines
237 B
Plaintext

/**
* Exposes user information
*/
@requires: 'authenticated-user'
service UserService {
/**
* The current user
*/
@odata.singleton entity me {
id : String; // user id
locale : String;
tenant : String;
}
}