fix recentAll

This commit is contained in:
knst-kotov
2022-06-12 09:10:00 +03:00
parent 8e7e070948
commit 03c1b69bfb
2 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
from resolvers.auth import login, sign_out, is_email_free, register, confirm
from resolvers.zine import create_shout, get_shout_by_slug, \
top_month, top_overall, recent_shouts, recent_all, top_viewed, shouts_by_authors, shouts_by_topics, shouts_by_communities, \
top_month, top_overall, recent_published, recent_all, top_viewed, shouts_by_authors, shouts_by_topics, shouts_by_communities, \
shouts_candidates, shouts_reviewed, shouts_subscribed
from resolvers.profile import get_users_by_slugs, get_current_user
from resolvers.topics import topic_subscribe, topic_unsubscribe, topics_by_author, \
@@ -19,7 +19,7 @@ __all__ = [
"get_current_user",
"get_users_by_slugs",
"get_shout_by_slug",
"recent_shouts",
"recent_published",
"recent_all",
"shouts_by_topics",
"shouts_by_authors",