update tache

This commit is contained in:
HarmandI 2022-02-17 11:38:46 +01:00
parent 31ec70f02e
commit eb7b7777ec

View File

@ -77,11 +77,14 @@ public class TacheController {
return ResponseEntity.status(HttpStatus.CREATED).body(resultTache); return ResponseEntity.status(HttpStatus.CREATED).body(resultTache);
} }
//Met a jour les informations d'une date avec son ID //Met a jour les informations d'une tache avec son ID
@PutMapping("/update/{id}") @PutMapping("/update/{id}")
public ResponseEntity<?> updateTache(@RequestBody Tache tache, @PathVariable Integer id) throws Exception { public ResponseEntity<?> updateTache(@RequestBody Tache tache, @PathVariable Integer id) throws Exception {
Tache resultTache = null; Tache resultTache = null;
try { try {
TodoList todolist=new TodoList();
todolist.setId(tacheRepo.findById(tache.getId()).get().getTodolist().getId());
tache.setTodolist(todolist);
resultTache = tacheRepo.save(tache); resultTache = tacheRepo.save(tache);
} catch (Exception e) { } catch (Exception e) {