Updated dashboard.py and DashboardConfigurationStore.js

- Added `session.clear()` to clean the session specific to each login session
- Clear all cookie with the `signout` request and also clear again (just in case) in the frontend code.
This commit is contained in:
Donald Zou
2024-11-25 01:46:27 +08:00
parent fa04ad1395
commit 5462326f79
2 changed files with 3 additions and 2 deletions

View File

@@ -63,8 +63,9 @@ export const DashboardConfigurationStore = defineStore('DashboardConfigurationSt
});
},
async signOut(){
await fetchGet("/api/signout", {}, (res) => {
await fetchGet("/api/signout", {}, () => {
this.removeActiveCrossServer();
document.cookie = '';
this.$router.go('/signin')
});
},