Implementierung des Imports von Benutzern und Gruppen aus Active Directory im Angular-Frontend.

This commit is contained in:
Developer 02
2024-03-11 15:31:36 +01:00
parent df9bc33795
commit 2e26342be6
292 changed files with 599 additions and 221 deletions

View File

@@ -15,7 +15,7 @@ namespace DigitalData.UserManager.Application.Services
{
}
public async Task<IServiceResult<int>> CreateAsync(ADGroup adGroup)
public async Task<IServiceResult<int>> CreateAsync(DirectoryGroupDto adGroup)
{
var group = _mapper.MapOrThrow<Group>(adGroup);