From d613549f23ac770bc78238f09fd600e08c0edf91 Mon Sep 17 00:00:00 2001 From: keerthi Date: Sun, 15 Feb 2026 12:27:44 +0530 Subject: [PATCH 1/4] added api_backend --- app/main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/main.py b/app/main.py index 1750389..bba5810 100644 --- a/app/main.py +++ b/app/main.py @@ -78,6 +78,11 @@ def create_task(task: TaskCreate): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) +@app.get("/about",response_class=plainTextResponse) +def about_backend(): + return "This is all backend" + + @app.get("/about",response_class=PlainTextResponse) def about_backend(): return "This is all backend" From e7ee6347db53ac2fc61d45cbd2cd7ab7541ff6d3 Mon Sep 17 00:00:00 2001 From: keerthi Date: Sun, 15 Feb 2026 18:35:43 +0530 Subject: [PATCH 2/4] added api_backend --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index bba5810..96c2b75 100644 --- a/app/main.py +++ b/app/main.py @@ -82,11 +82,14 @@ def create_task(task: TaskCreate): def about_backend(): return "This is all backend" +@app.get("/about",response_class=plainTextResponse) +def about_backend(): + return "This is all backend" @app.get("/about",response_class=PlainTextResponse) def about_backend(): return "This is all backend" - +#changes made by keerthianna2005@gmail.com @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks""" From 947e302175a10759f90ea816f1c491d3ccb4ffe9 Mon Sep 17 00:00:00 2001 From: keerthi Date: Mon, 16 Feb 2026 22:47:04 +0530 Subject: [PATCH 3/4] nxtdo-changes --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 96c2b75..b28138a 100644 --- a/app/main.py +++ b/app/main.py @@ -89,7 +89,7 @@ def about_backend(): @app.get("/about",response_class=PlainTextResponse) def about_backend(): return "This is all backend" -#changes made by keerthianna2005@gmail.com + @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks""" From f9104d73e0c6af208308a63b7d78e6033e6e9642 Mon Sep 17 00:00:00 2001 From: keerthi Date: Mon, 16 Feb 2026 22:50:07 +0530 Subject: [PATCH 4/4] nxtdo-changes --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index b28138a..c7a7d24 100644 --- a/app/main.py +++ b/app/main.py @@ -90,6 +90,10 @@ def about_backend(): def about_backend(): return "This is all backend" +@app.get("/about",response_class=PlainTextResponse) +def about_backend(): + return "This is all backend" + @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks"""