From 0697aff502d4596379feac58f2ed06f34b33f7ab Mon Sep 17 00:00:00 2001 From: bniwredyc Date: Sun, 14 May 2023 19:02:26 +0200 Subject: [PATCH] test --- .github/workflows/deply.yml | 2 +- resolvers/create/editor.py | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) 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")