Initial commit

This commit is contained in:
2026-01-02 21:10:39 +03:00
parent aeeaee4add
commit 8e38fd6d56
2 changed files with 2 additions and 2 deletions
@@ -18,7 +18,7 @@ async def get_tests_data(test_dao: FromDishka[TestDAO], **_kwargs):
return {
"tests": [
(t.title, t.id)
(f"{'🟢' if t.is_active else '🔴'} {t.title}", t.id)
for t in tests
],
"count": len(tests),
@@ -19,7 +19,7 @@ async def get_tests_data(test_dao: FromDishka[TestDAO], **_kwargs):
return {
"tests": [
(t.title, t.id)
(f"{'🟢' if t.is_active else '🔴'} {t.title}", t.id)
for t in tests
],
"count": len(tests),