From 3a3e036f0def169675721c2c26b7a763224dc637 Mon Sep 17 00:00:00 2001 From: MatManSky Date: Tue, 8 Aug 2023 19:36:51 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/main.py b/back/main.py index 28e3cd7..6d00d11 100644 --- a/back/main.py +++ b/back/main.py @@ -203,7 +203,7 @@ def poems_to_front(): # db: Annotated[Session, Depends(utils.get_db)] rand_id = random.randint(1, kolvo_stixov) # номер стихотворения poem_json = dict() poem = database.query(models.Poems).filter(models.Poems.id == rand_id).first() - poem_json = {"title": poem.title, "text": poem.text, "author": poem.author} + poem_json = {"id": rand_id, "title": poem.title, "text": poem.text, "author": poem.author} return poem_json else: raise HTTPException(status_code=404, detail="Poems not found")