на
This commit is contained in:
parent
835dcf3979
commit
3a3e036f0d
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user