diff --git a/orm/reaction.py b/orm/reaction.py index 3ff769cd..1c129e23 100644 --- a/orm/reaction.py +++ b/orm/reaction.py @@ -19,8 +19,8 @@ class ReactionKind(Enumeration): REJECT = 0 # -1 LIKE = 11 # +1 DISLIKE = 12 # -1 - REMARK = 13 # 0 - FOOTNOTE = 14 # 0 + REMARK = 13 # 0 + FOOTNOTE = 14 # 0 # TYPE = # rating diff diff --git a/resolvers/create/editor.py b/resolvers/create/editor.py index 583a5caf..98283b30 100644 --- a/resolvers/create/editor.py +++ b/resolvers/create/editor.py @@ -12,9 +12,9 @@ from orm.topic import TopicFollower, Topic from orm.user import User 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 -from orm.draft import DraftCollab +# from resolvers.inbox.chats import create_chat +# from services.inbox.storage import MessagesStorage +# from orm.draft import DraftCollab @mutation.field("createShout")