1
0
forked from PGL/Clyde

added every delete endpoint required

This commit is contained in:
2024-03-18 11:22:21 +01:00
parent a80fb2b297
commit 93c161be4c
9 changed files with 74 additions and 4 deletions

View File

@ -87,4 +87,8 @@ public class InscriptionService {
save(inscrRequest);
return true;
}
public void delete(InscriptionRequest toDelete) {
inscriptionRepo.delete(toDelete);
}
}