fix(api): Load current user in login function of mainStore
This commit is contained in:
parent
83f32ea82a
commit
49c3ec74ba
|
@ -67,8 +67,10 @@ export const useMainStore = defineStore({
|
|||
},
|
||||
|
||||
async login(userid: string, password: string) {
|
||||
const userStore = useUserStore();
|
||||
try {
|
||||
const { data } = await api.post<FG.Session>('/auth', { userid, password });
|
||||
this.user = await userStore.getUser(data.userid, true);
|
||||
this.session = fixSession(data);
|
||||
return true;
|
||||
} catch ({ response }) {
|
||||
|
|
Loading…
Reference in New Issue