File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
personalization-service/src/main/java/de/muenchen/dbs/personalization/checklist Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,15 +69,15 @@ public void deleteChecklist(@PathVariable(CHECKLIST_ID) final UUID checklistID)
69
69
checklistService .deleteChecklist (checklistID );
70
70
}
71
71
72
- @ PostMapping (PATH_VAR_CHECKLIST_ID + PATH_VAR_SERVICE_ID )
72
+ @ PostMapping (PATH_VAR_CHECKLIST_ID + PATH_VAR_SERVICE_ID + "/check" )
73
73
@ Operation (summary = "Check a Checklist-Entry" , description = "Checks a checklist-entry." )
74
74
@ ResponseStatus (HttpStatus .OK )
75
75
public ChecklistReadDTO checkChecklistEntry (@ PathVariable (CHECKLIST_ID ) final UUID checklistID ,
76
76
@ PathVariable (SERVICE_ID ) final String serviceID ) {
77
77
return checklistMapper .toReadDTO (checklistService .changeChecklistEntry (checklistID , serviceID , ZonedDateTime .now ()));
78
78
}
79
79
80
- @ PostMapping (PATH_VAR_CHECKLIST_ID + PATH_VAR_SERVICE_ID )
80
+ @ PostMapping (PATH_VAR_CHECKLIST_ID + PATH_VAR_SERVICE_ID + "/uncheck" )
81
81
@ Operation (summary = "Check a Checklist-Entry" , description = "Checks a checklist-entry." )
82
82
@ ResponseStatus (HttpStatus .OK )
83
83
public ChecklistReadDTO uncheckChecklistEntry (@ PathVariable (CHECKLIST_ID ) final UUID checklistID ,
You can’t perform that action at this time.
0 commit comments