Torostar
Torostar

Reputation: 497

Django allauth change password without logging out

I'm using Django allauth for my authentication and I want to be able to stay logged in after changing the password. The allauth docs say that it is possible with:

ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE =False

enter image description here

but I can't make it work. Has anyone here managed to resolve this issue?

Thanks

Upvotes: 2

Views: 1257

Answers (1)

Alasdair
Alasdair

Reputation: 308939

It looks like this might be related to issue 1262.

It was fixed in version 0.24.0, so make sure you have upgraded.

Upvotes: 2

Related Questions