16 lines
255 B
Plaintext
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;
|
|
}
|