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

View File

@ -44,9 +44,9 @@ class BenutzerController
return json_encode($result);
}
public function anmeldeVersuch($data)
public function anmeldeVersuch()
{
$result = $this->db->anmeldeVersuch($data);
$result = $this->db->anmeldeVersuch();
return json_encode($result);
}

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);
}
}
?>

View File

@ -64,6 +64,13 @@ class TagesplanModel extends Database
} catch (\PDOException $e) {
return false;
}
}
public function getGerichteOnTag()
{
}
}
?>