From 4b3c027385e8f0a7c22f19896181589cf954032e Mon Sep 17 00:00:00 2001 From: Thomas Rubini <74205383+ThomasRubini@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:35:11 +0100 Subject: [PATCH] Deprecate /getGameInfo endpoint --- truthseeker/routes_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/truthseeker/routes_api.py b/truthseeker/routes_api.py index 233b96c..5a3cc2b 100644 --- a/truthseeker/routes_api.py +++ b/truthseeker/routes_api.py @@ -38,7 +38,7 @@ def join_game(): return response @api_routes.route("/getGameInfo") -def get_game_info(): +def get_game_info(): # DEPRECATED, SHOULD BE REMOVED response = {} game_id = flask.request.args.get("game_id") if game_id == None: