From 6255e490c7e65cafc893f6f2108ce59bcba9e212 Mon Sep 17 00:00:00 2001 From: Will Smart Date: Sat, 11 Jan 2025 17:12:06 -0500 Subject: [PATCH] Adds 'pending' to response for GET /history Allows for some additional integration opportunities by including "pending" items in the json reponse to /history. --- app/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 2ff3ec2..c7bbfed 100644 --- a/app/main.py +++ b/app/main.py @@ -165,12 +165,14 @@ async def start(request): @routes.get(config.URL_PREFIX + 'history') async def history(request): - history = { 'done': [], 'queue': []} + history = { 'done': [], 'queue': [], 'pending': []} for _ ,v in dqueue.queue.saved_items(): history['queue'].append(v) for _ ,v in dqueue.done.saved_items(): history['done'].append(v) + for _ ,v in dqueue.pending.saved_items(): + history['pending'].append(v) return web.Response(text=serializer.encode(history))