Testing #16

Merged
PBG2H22AWO merged 10 commits from Testing into main 2024-01-26 10:34:22 +01:00
3 changed files with 15 additions and 2 deletions
Showing only changes of commit bbb5ebcbac - Show all commits

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()
{
}
}
?>