diff --git a/.github/workflows/deply.yml b/.github/workflows/deply.yml index d659b1cd..38ff704c 100644 --- a/.github/workflows/deply.yml +++ b/.github/workflows/deply.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - + - uses: webfactory/ssh-agent@v0.8.0 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} diff --git a/resolvers/create/editor.py b/resolvers/create/editor.py index 8207d696..50f5e60d 100644 --- a/resolvers/create/editor.py +++ b/resolvers/create/editor.py @@ -7,14 +7,9 @@ from auth.authenticate import login_required from auth.credentials import AuthCredentials from base.orm import local_session from base.resolvers import mutation -from orm.rbac import Resource from orm.shout import Shout, ShoutAuthor, ShoutTopic -from orm.topic import TopicFollower, Topic -from orm.user import User +from orm.topic import Topic from resolvers.zine.reactions import reactions_follow, reactions_unfollow -from services.zine.gittask import GitTask -# from resolvers.inbox.chats import create_chat -# from services.inbox.storage import MessagesStorage @mutation.field("createShout")