mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-27 11:16:35 +00:00
tmp allow access to graphql without auth
This commit is contained in:
parent
28db251f1f
commit
01dea50c1f
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue