refactor(user-representation.component): Aktualisiert, um als unbegrenzt zu speichern.

This commit is contained in:
Developer 02
2024-11-11 14:09:10 +01:00
parent 7e05123fbf
commit ff6ebf300c
4 changed files with 11 additions and 14 deletions

View File

@@ -31,7 +31,6 @@ namespace DigitalData.UserManager.Application.Services
//date range control
: (createDto.ValidFrom > createDto.ValidTo)
? Result.Fail<int>().Notice(LogLevel.None, Flag.DataIntegrityIssue, _localizer[Key.InvalidDateRange])
: await base.CreateAsync(createDto);
: await base.CreateAsync(createDto);
}
}