mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
updated format of import data
This commit is contained in:
@ -239,8 +239,8 @@ namespace Bit.Api.Controllers
|
||||
}
|
||||
|
||||
var userId = _userService.GetProperUserId(User);
|
||||
await _organizationService.ImportAsync(orgIdGuid, userId.Value, model.Groups.Select(g => g.ToGroup(orgIdGuid)),
|
||||
model.Users.Select(u => u.ToKvp()));
|
||||
await _organizationService.ImportAsync(orgIdGuid, userId.Value, model.Groups.Select(g => g.ToGroupTuple(orgIdGuid)),
|
||||
model.NewUsers.Select(u => u.Email), model.RemoveUsers.Select(u => u.Email));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -95,7 +95,7 @@ namespace Bit.Api
|
||||
|
||||
// Services
|
||||
services.AddBaseServices();
|
||||
services.AddDefaultServices();
|
||||
services.AddNoopServices();
|
||||
|
||||
// Cors
|
||||
services.AddCors(config =>
|
||||
|
Reference in New Issue
Block a user