feat(auth): moved to httponly token

This commit is contained in:
2025-02-17 15:14:28 +01:00
parent 5abbec19c8
commit 0b107c9882
25 changed files with 293 additions and 150 deletions

View File

@ -14,7 +14,6 @@ def logged_in_client(backend):
token = response.json()
assert isinstance(token, str)
assert len(token) > 20
client.headers.update({"Authorization": f"Bearer {token}"})
return client