Feat: Refresh login token for the client initiating password change (#4214)

This commit is contained in:
Nelson Chan
2023-12-18 19:52:49 +08:00
committed by GitHub
parent 996ff28ed9
commit c9fe6b5d01
3 changed files with 15 additions and 2 deletions

View File

@@ -177,6 +177,12 @@ export default {
this.password.currentPassword = "";
this.password.newPassword = "";
this.password.repeatNewPassword = "";
// Update token of the current session
if (res.token) {
this.$root.storage().token = res.token;
this.$root.socket.token = res.token;
}
}
});
}