feat: Entfernen der EcmFkId-Eigenschaft aus GroupCreateDto und dem Formular zur Gruppenerstellung

- `EcmFkId`-Eigenschaft aus dem `GroupCreateDto` im Backend entfernt.
- Anpassungen im Frontend vorgenommen, um das `EcmFkId`-Feld im Formular zur Gruppenerstellung zu entfernen.
- `EcmFkId` wird im Entity standardmäßig auf `-1` gesetzt.
This commit is contained in:
Developer 02
2024-09-09 13:23:45 +02:00
parent e6416f0d7f
commit dfe848100a
5 changed files with 6 additions and 20 deletions

View File

@@ -8,7 +8,6 @@ namespace DigitalData.UserManager.Application.DTOs.Group
bool? AdSync,
bool? Internal,
bool? Active,
string? Comment,
int EcmFkId
string? Comment
) : BaseCreateDto();
}