This commit is contained in:
2024-01-15 09:39:19 +01:00
parent ab9b8ee706
commit 2b14563643
2 changed files with 28 additions and 0 deletions

View File

@@ -36,6 +36,14 @@ class BenutzerController
return json_encode($data);
}
public function nextId()
{
$result = $this->db->nextId();
return json_encode($result);
}
}
?>