Rochdi Khalid

Results 2 comments of Rochdi Khalid

@edmundsj You are right, returning a 200 status code for a logout request if the user is not authenticated is not considered to be the best practice. A 400 status...

Did you add the following class to the REST_FRAMEWORK setting: `'dj_rest_auth.jwt_auth.JWTCookieAuthentication'`? Example: ```python REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( 'dj_rest_auth.jwt_auth.JWTCookieAuthentication', ) 'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.coreapi.AutoSchema' } ```