tested-auth-refactoring
Some checks failed
Deploy on push / deploy (push) Failing after 5s

This commit is contained in:
2025-07-25 01:04:15 +03:00
parent 867232e48f
commit b60a314ddd
28 changed files with 975 additions and 523 deletions

View File

@@ -731,8 +731,8 @@ async def admin_get_reactions(
"deleted_at": shout.deleted_at,
},
"stat": {
"comments_count": stats.comments_count or 0,
"rating": stats.rating or 0,
"comments_count": stats.comments_count if stats else 0,
"rating": stats.rating if stats else 0,
},
}
)