This commit is contained in:
2024-01-18 10:02:29 +01:00
parent e730377103
commit bbb5ebcbac
3 changed files with 15 additions and 2 deletions

View File

@@ -33,5 +33,11 @@ class TagesplanController
$result = $this->db->deleteTagesplan($id);
return json_encode($result);
}
public function getGerichteOnTag()
{
$result = $this->db->getGerichteOnTag();
return json_encode($result);
}
}
?>