tmp allow access to graphql without auth

graphql
Inex Code 2022-06-24 18:21:13 +03:00
parent 28db251f1f
commit 01dea50c1f
1 changed files with 3 additions and 0 deletions

View File

@ -51,6 +51,9 @@ def create_app(test_config=None):
pass
elif request.path.startswith("/auth/recovery_token/use"):
pass
# TODO: REMOVE THIS
elif request.path.startswith("/graphql"):
pass
else:
auth = request.headers.get("Authorization")
if auth is None: