Compare commits
No commits in common. "ec28857af59ee4ceecbc1ef02d81e56f766d9c4c" and "195593ddc5841d6a7dfc48717932af71fc78216a" have entirely different histories.
ec28857af5
...
195593ddc5
|
@ -4,7 +4,7 @@ import { AxiosResponse } from 'axios';
|
|||
import { api } from '../internal';
|
||||
import { defineStore } from 'pinia';
|
||||
import { PersistentStorage } from '../utils/persistent';
|
||||
import { LocalStorage, SessionStorage } from 'quasar';
|
||||
|
||||
function reviveSession() {
|
||||
return PersistentStorage.get<FG.Session>('fg_session').then((s) => fixSession(s || undefined));
|
||||
}
|
||||
|
@ -154,8 +154,6 @@ export const useMainStore = defineStore({
|
|||
handleLoggedOut() {
|
||||
this.$reset();
|
||||
void clearPersistant();
|
||||
LocalStorage.clear();
|
||||
SessionStorage.clear();
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
19
package.json
19
package.json
|
@ -17,30 +17,29 @@
|
|||
"dependencies": {
|
||||
"@flaschengeist/api": "file:./api",
|
||||
"@flaschengeist/users": "^1.0.0-alpha.3",
|
||||
"@flaschengeist/schedule": "^1.0.0-alpha.6",
|
||||
"axios": "^0.24.0",
|
||||
"pinia": "^2.0.8",
|
||||
"quasar": "^2.3.4"
|
||||
"pinia": "^2.0.6",
|
||||
"quasar": "^2.3.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@capacitor/core": "^3.3.3",
|
||||
"@capacitor/core": "^3.3.2",
|
||||
"@capacitor/storage": "^1.2.3",
|
||||
"@flaschengeist/types": "^1.0.0-alpha.10",
|
||||
"@quasar/app": "^3.2.5",
|
||||
"@quasar/app": "^3.2.4",
|
||||
"@quasar/extras": "^1.12.2",
|
||||
"@types/node": "^14.18.0",
|
||||
"@types/webpack": "^5.28.0",
|
||||
"@types/webpack-env": "^1.16.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
||||
"@typescript-eslint/parser": "^5.8.0",
|
||||
"eslint": "^8.5.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.5.0",
|
||||
"@typescript-eslint/parser": "^5.5.0",
|
||||
"eslint": "^8.4.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"eslint-plugin-vue": "^8.2.0",
|
||||
"eslint-plugin-vue": "^8.1.1",
|
||||
"eslint-webpack-plugin": "^3.1.1",
|
||||
"modify-source-webpack-plugin": "^3.0.0",
|
||||
"prettier": "^2.5.1",
|
||||
"typescript": "^4.5.4",
|
||||
"typescript": "^4.5.2",
|
||||
"vuedraggable": "^4.1.0"
|
||||
},
|
||||
"prettier": {
|
||||
|
|
Loading…
Reference in New Issue