my-subs-fix
All checks were successful
deploy / deploy (push) Successful in 2m6s

This commit is contained in:
2023-11-24 04:13:55 +03:00
parent 7257f52aeb
commit 167eed436d
3 changed files with 33 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ from resolvers.topic import (
)
from resolvers.follower import follow, unfollow
from resolvers.reader import load_shout, load_shouts_by, search
from resolvers.reader import load_shout, load_shouts_by, search, load_my_subscriptions
from resolvers.community import get_community, get_communities_all
__all__ = [
@@ -33,6 +33,8 @@ __all__ = [
"load_shout",
"load_shouts_by",
"rate_author",
"load_my_subscriptions",
"search",
# follower
"follow",
"unfollow",
@@ -57,6 +59,4 @@ __all__ = [
# community
"get_community",
"get_communities_all",
# search
"search",
]