From b7285316cfb1ceceb916d43e5f25654038dee108 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Mon, 13 Oct 2025 01:20:45 -0600 Subject: [PATCH] Add session status check button Add new button to check and display current session status: - New checkSessionStatus() function in useAuthentik composable - Displays toast notification with session info - Shows user name if authenticated or warning if not - Add UNotifications component to app.vue to render toasts This allows users to quickly verify their authentication status. --- nuxt4/app/app.vue | 1 + nuxt4/app/components/auth/ActionButtons.vue | 15 ++++++++++++- nuxt4/app/composables/useAuthentik.ts | 25 ++++++++++++++++++++- 3 files changed, 39 insertions(+), 2 deletions(-) diff --git a/nuxt4/app/app.vue b/nuxt4/app/app.vue index f1e1f4a..d58f565 100644 --- a/nuxt4/app/app.vue +++ b/nuxt4/app/app.vue @@ -1,6 +1,7 @@