mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-03-17 20:14:39 +00:00
tmp allow access to graphql without auth
This commit is contained in:
parent
28db251f1f
commit
01dea50c1f
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue