Merge pull request #31 from Discours/get-author-get-topic-fix
getTopic, getAuthor fix
This commit is contained in:
commit
c9d607035a
8
CHECKS
8
CHECKS
|
@ -1,5 +1,5 @@
|
||||||
WAIT=30
|
# WAIT=30
|
||||||
TIMEOUT=10
|
# TIMEOUT=10
|
||||||
ATTEMPTS=60 # 60 * 30 = 30 min
|
# ATTEMPTS=60 # 60 * 30 = 30 min
|
||||||
|
|
||||||
/ Playground
|
# / Playground
|
||||||
|
|
|
@ -213,6 +213,6 @@ def get_top_authors(_, _info, offset, limit):
|
||||||
|
|
||||||
@query.field("getAuthor")
|
@query.field("getAuthor")
|
||||||
async def get_author(_, _info, slug):
|
async def get_author(_, _info, slug):
|
||||||
a = await UserStorage.users[slug]
|
a = await UserStorage.get_user_by_slug(slug)
|
||||||
a.stat = get_author_stat(slug)
|
a.stat = await get_author_stat(slug)
|
||||||
return a
|
return a
|
||||||
|
|
|
@ -55,8 +55,8 @@ async def topics_by_author(_, _info, author):
|
||||||
|
|
||||||
@query.field("getTopic")
|
@query.field("getTopic")
|
||||||
async def get_topic(_, _info, slug):
|
async def get_topic(_, _info, slug):
|
||||||
t = await TopicStorage.topics[slug]
|
t = TopicStorage.topics[slug]
|
||||||
t.stat = get_topic_stat(slug)
|
t.stat = await get_topic_stat(slug)
|
||||||
return t
|
return t
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user