This commit is contained in:
MatManSky 2023-08-08 19:36:51 +03:00
parent 835dcf3979
commit 3a3e036f0d

View File

@ -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")