Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Content-Type header sent in HTTP 204 responses #247

Open
Anthony-Stannard opened this issue Aug 15, 2024 · 0 comments
Open

Content-Type header sent in HTTP 204 responses #247

Anthony-Stannard opened this issue Aug 15, 2024 · 0 comments

Comments

@Anthony-Stannard
Copy link

A successful request to /auth/invalidate-sessions will result in an HTTP 204 response being returned.
The HTTP 204 response will have a Content-Type header when it shouldn't have this header.

A simple fix would be to remove the empty dictionary from the POST Response in the InvalidateSessions and InvalidateRefreshTokens class:

Current line 281 in views.py
return Response({}, status=HTTP_204_NO_CONTENT)

Can be fixed with:
return Response(status=HTTP_204_NO_CONTENT)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant