From 04a536205141e2460001f1ee9f55301de5012d13 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Thu, 30 May 2024 15:23:44 +0200 Subject: [PATCH] remove automatically logged out message --- frontend/src/components/SessionLogoutTimeout.vue | 2 -- frontend/src/locales/de.json | 1 - frontend/src/locales/en.json | 1 - 3 files changed, 4 deletions(-) diff --git a/frontend/src/components/SessionLogoutTimeout.vue b/frontend/src/components/SessionLogoutTimeout.vue index 7a11d1d83..1ebff752a 100644 --- a/frontend/src/components/SessionLogoutTimeout.vue +++ b/frontend/src/components/SessionLogoutTimeout.vue @@ -67,7 +67,6 @@ export default { } if (this.tokenExpiresInSeconds === 0) { this.$timer.stop('tokenExpires') - this.toastInfoNoHide(this.$t('session.automaticallyLoggedOut')) this.$emit('logout') } }, @@ -85,7 +84,6 @@ export default { }) .catch(() => { this.$timer.stop('tokenExpires') - this.toastInfoNoHide(this.$t('session.automaticallyLoggedOut')) this.$emit('logout') }) }, diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json index 661a4f8e4..5e5ca3225 100644 --- a/frontend/src/locales/de.json +++ b/frontend/src/locales/de.json @@ -299,7 +299,6 @@ "send_gdd": "GDD versenden", "send_per_link": "GDD versenden per Link", "session": { - "automaticallyLoggedOut": "Du wurdest automatisch abgemeldet", "extend": "Angemeldet bleiben", "lightText": "Wenn du länger als 10 Minuten keine Aktion getätigt hast, wirst du aus Sicherheitsgründen abgemeldet.", "logoutIn": "Abmelden in ", diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 527ec3ddf..6a43b8fec 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -299,7 +299,6 @@ "send_gdd": "Send GDD", "send_per_link": "Send GDD via Link", "session": { - "automaticallyLoggedOut": "You have been automatically logged out.", "extend": "Stay logged in", "lightText": "If you have not performed any action for more than 10 minutes, you will be logged out for security reasons.", "logoutIn": "Log out in ",