fix(backend): Insert weggewerkt

In de plaats optionele check aan DwengoEntityRepository.save(...) toegevoegd die eist dat de entity nog niet bestaat.
This commit is contained in:
Gerald Schmittinger 2025-03-30 14:19:57 +02:00
parent 148de14b78
commit e8add72de4
5 changed files with 1281 additions and 515 deletions

View file

@ -0,0 +1,7 @@
import {ConflictException} from "./conflict-exception";
export class EntityAlreadyExistsException extends ConflictException {
constructor(message: string) {
super(message);
}
}