Beispiel #1
0
 /// <summary>
 /// Adds an existing user to a space.
 /// </summary>
 /// <param name="spaceID">The ID of the space to query.</param>
 /// <param name="username">The user to add to the space.</param>
 /// <param name="isAdmin">Indicates whether the user is admin in the space.</param>
 public void AddUserToSpace(string spaceID, string username, bool isAdmin)
 {
     _webService.addUserToSpace(LoginToken, username, spaceID, isAdmin);
 }
 public void AddUserToSpace(string token, string username, string spaceId, bool hasAdmin)
 {
     _service.addUserToSpace(token, username, spaceId, hasAdmin);
 }