* Create a new User wrapper * @param {string} [user] - the name of the user to get information about * leave undefined for the authenticated user * @return {User}
(user)
| 48 | * @return {User} |
| 49 | */ |
| 50 | getUser(user) { |
| 51 | return new User(user, this.__auth, this.__apiBase); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Create a new Organization wrapper |
no outgoing calls
no test coverage detected