From eaff6ecc9d0399ee80c4dd602f9ce3110b8b0171 Mon Sep 17 00:00:00 2001 From: Gerni <47844854+mgerni@users.noreply.github.com> Date: Mon, 8 Dec 2025 19:09:07 -0500 Subject: [PATCH] add tip to current task api endpoint --- taskapp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/taskapp.py b/taskapp.py index 1b0398f..5309d25 100644 --- a/taskapp.py +++ b/taskapp.py @@ -175,7 +175,8 @@ def api_current_task(user): 'message': { 'taskId': current_task[3], 'taskName': current_task[0], - 'taskImage': current_task[6] + 'taskImage': current_task[6], + 'taskTip': current_task[4] } })