From 956281e74958d630c28abbb33491f61fc3c82023 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Mon, 30 Jun 2025 23:40:26 +0200 Subject: [PATCH] router now working, implemented login and logout Signed-off-by: Stephan Richter --- frontend/src/App.svelte | 1 + frontend/src/Components/Login.svelte | 8 ++- frontend/src/Components/Menu.svelte | 6 +- frontend/src/user.svelte.js | 20 ++++++ .../srsoftware/umbrella/user/Constants.java | 13 ---- .../de/srsoftware/umbrella/user/Paths.java | 20 ++++++ .../srsoftware/umbrella/user/UserModule.java | 69 +++++++++++++++++-- 7 files changed, 113 insertions(+), 24 deletions(-) create mode 100644 user/src/main/java/de/srsoftware/umbrella/user/Paths.java diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 8a856a2..00f8f0b 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -21,6 +21,7 @@ {#if translations_ready } {#if user.name } + diff --git a/frontend/src/Components/Login.svelte b/frontend/src/Components/Login.svelte index cd66614..29800a9 100644 --- a/frontend/src/Components/Login.svelte +++ b/frontend/src/Components/Login.svelte @@ -1,6 +1,8 @@