Merge branch 'main' of github.com:Discours/discours-backend into main

This commit is contained in:
2022-11-11 21:07:59 +03:00
6 changed files with 57 additions and 25 deletions

View File

@@ -213,6 +213,6 @@ def get_top_authors(_, _info, offset, limit):
@query.field("getAuthor")
async def get_author(_, _info, slug):
a = await UserStorage.users[slug]
a.stat = get_author_stat(slug)
a = await UserStorage.get_user_by_slug(slug)
a.stat = await get_author_stat(slug)
return a

View File

@@ -55,8 +55,8 @@ async def topics_by_author(_, _info, author):
@query.field("getTopic")
async def get_topic(_, _info, slug):
t = await TopicStorage.topics[slug]
t.stat = get_topic_stat(slug)
t = TopicStorage.topics[slug]
t.stat = await get_topic_stat(slug)
return t