diff --git a/app.config.ts b/app.config.ts new file mode 100644 index 0000000..11f7f7c --- /dev/null +++ b/app.config.ts @@ -0,0 +1,5 @@ +export default defineAppConfig({ + title: "Gorb", + buildTimeString: new Date().toISOString(), + gitHash: process.env.GIT_SHORT_REV || "N/A" +}) diff --git a/composables/auth.ts b/composables/auth.ts index b23a67b..0ac2e8b 100644 --- a/composables/auth.ts +++ b/composables/auth.ts @@ -37,19 +37,13 @@ export const useAuth = () => { //await fetchUser(); } - async function logout() { + async function logout(password: string) { + console.log("password:", password); console.log("access:", accessToken.value); - - await fetchWithApi("/auth/logout", { method: "GET", credentials: "include" }); - clearAuth(); - - return await navigateTo("/login"); - } - - async function revoke(password: string) { const hashedPass = await hashPassword(password); + console.log("hashed"); - await fetchWithApi("/auth/revoke", { + const res = await fetchWithApi("/auth/revoke", { method: "POST", body: { @@ -60,6 +54,10 @@ export const useAuth = () => { clearAuth(); } + async function revoke() { + clearAuth(); + } + async function refresh() { console.log("refreshing"); const res = await fetchWithApi("/auth/refresh", { diff --git a/nuxt.config.ts b/nuxt.config.ts index 05a40fa..63d9372 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -27,9 +27,7 @@ export default defineNuxtConfig({ runtimeConfig: { public: { apiVersion: 1, - messageGroupingMaxDifference: 300000, - buildTimeString: new Date().toISOString(), - gitHash: process.env.GIT_SHORT_REV || "N/A", + messageGroupingMaxDifference: 300000 } }, /* nitro: { diff --git a/pages/settings.vue b/pages/settings.vue index bd1a484..cc694a9 100644 --- a/pages/settings.vue +++ b/pages/settings.vue @@ -24,9 +24,9 @@

- Version Hash: {{ appConfig.public.gitHash }} + Version Hash: {{ appConfig.gitHash }}
- Build Time: {{ appConfig.public.buildTimeString }} + Build Time: {{ appConfig.buildTimeString }}

@@ -44,7 +44,7 @@ import Button from '~/components/Button.vue'; const { logout } = useAuth() -const appConfig = useRuntimeConfig() +const appConfig = useAppConfig() interface Page { displayName: string;