some-new-replacements

This commit is contained in:
2022-10-18 22:10:18 +03:00
parent 25267fa5b0
commit 504d847102
2 changed files with 6 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ async def get_user_subscriptions(slug):
"unread": await get_unread_counter(slug), # unread inbox messages counter
"topics": [t.slug for t in get_followed_topics(0, slug)], # followed topics slugs
"authors": [a.slug for a in get_followed_authors(0, slug)], # followed authors slugs
"reactions": [r.shout for r in get_reactions_for_shouts(0, [slug, ])], # followed reacted shouts slugs
"reactions": [r.shout for r in get_reactions_for_shouts(0, [slug, ])], # followed reacted shout
"communities": [c.slug for c in get_followed_communities(0, slug)], # followed communities slugs
}