From c06067fdca95c7e32442fd0be7c70a2c39915f44 Mon Sep 17 00:00:00 2001 From: JuliaCaesar Date: Fri, 20 Oct 2023 23:41:19 -0500 Subject: [PATCH] added documentation --- server/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/main.py b/server/main.py index 52ec8bf..65fa5f0 100644 --- a/server/main.py +++ b/server/main.py @@ -132,5 +132,6 @@ def get_score_over_time(group_run: GroupRunBase, db: Session = Depends(get_db)): def leaderboard(db: Session = Depends(get_db)): return crud_group_run.read_all(db) +# main should not be able to delete (we do not want the public to be able to delete) +# so we are not making a delete group runs endpoint -# no delete >:(