slugs fix, dev friendly, readme

This commit is contained in:
2022-05-31 10:03:50 +03:00
parent 1bd868b800
commit 8e57e8b7fb
5 changed files with 32 additions and 32 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, top_viewed, shouts_by_author, shouts_by_topic, \
from resolvers.zine import create_shout, get_shout_by_slug, \
top_month, top_overall, recent_shouts, 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, \
@@ -20,8 +20,9 @@ __all__ = [
"get_users_by_slugs",
"get_shout_by_slug",
"recent_shouts",
"shouts_by_topic",
"shouts_by_author",
"shouts_by_topics",
"shouts_by_authors",
"shouts_by_communities",
"shouts_subscribed",
"shouts_reviewed",
"shouts_candidates",