changed getAllPresets

main
Said Gedik 2023-10-10 13:46:34 +02:00
parent bf6af9128a
commit 2f64c62b78
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ public class KalenderRestController {
@CrossOrigin("*")
@GetMapping("/api/getAllPresets")
@ResponseBody
public List<Preset> savePreset() throws NotFoundError, ARException {
public List<Preset> getAllPresets() throws NotFoundError, ARException {
Presets presets = new Presets(javaAPI);
return presets.getAll();
}