core/resolvers/__init__.py
2022-02-22 14:44:01 +03:00

41 lines
1.3 KiB
Python

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, \
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, \
topics_by_community, topics_by_slugs
from resolvers.comments import create_comment
from resolvers.community import create_community, delete_community, get_community, get_communities
__all__ = [
"login",
"register",
"is_email_free",
"confirm",
# TODO: "reset_password_code",
# TODO: "reset_password_confirm",
"create_shout",
"get_current_user",
"get_users_by_slugs",
"get_shout_by_slug",
"recent_shouts",
"shouts_by_topic",
"shouts_by_author",
"shouts_subscribed",
"shouts_reviewed",
"shouts_candidates",
"top_month",
"top_overall",
"top_viewed",
"topics_by_slugs",
"topics_by_community",
"topics_by_author",
"topic_subscribe",
"topic_unsubscribe",
"create_community",
"delete_community",
"get_community",
"get_communities"
]