fix is logged in check
This commit is contained in:
@@ -17,7 +17,7 @@ export const useAuthStore = defineStore('auth', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const user = ref<User>();
|
const user = ref<User>();
|
||||||
const isLoggedIn = computed(() => !!user.value);
|
const isLoggedIn = computed(() => user.value?.expired === false);
|
||||||
const accessToken = computed(() => user.value?.access_token);
|
const accessToken = computed(() => user.value?.access_token);
|
||||||
const username = computed(() => user.value?.profile.name ?? "");
|
const username = computed(() => user.value?.profile.name ?? "");
|
||||||
const userId = computed(() => user.value?.profile.sub ?? "");
|
const userId = computed(() => user.value?.profile.sub ?? "");
|
||||||
|
|||||||
Reference in New Issue
Block a user