This commit is contained in:
2024-01-15 08:58:24 +01:00
parent b6ec972c19
commit 9c82aec3c5
3 changed files with 100 additions and 65 deletions

View File

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