(self, form)
| 366 | return kwargs |
| 367 | |
| 368 | def form_valid(self, form): |
| 369 | form.save() |
| 370 | # Updating the password logs out all other sessions for the user |
| 371 | # except the current one. |
| 372 | update_session_auth_hash(self.request, form.user) |
| 373 | return super().form_valid(form) |
| 374 | |
| 375 | |
| 376 | @method_decorator(login_required, name="dispatch") |
nothing calls this directly
no test coverage detected