Files
cloud-cap-samples/bookshop/srv/user-service.cds
Christian Georgi bb55c432c9 Bookshop showing user info
Show current user name, locale and tenant (if available).
Useful in deployments w/ real auth and tenant contexts.
2022-03-28 14:36:32 +02:00

18 lines
229 B
Plaintext

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