From d1b8b275ab33a0d38f2ac0ede6ae9fa4a6f798f8 Mon Sep 17 00:00:00 2001
From: undisclosed
Date: Mon, 11 May 2020 16:04:49 +0000
Subject: [PATCH] Neuen Nutzer speichern

---
 web/WEB-INF/sql.properties |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/web/WEB-INF/sql.properties b/web/WEB-INF/sql.properties
index 9dac09e..7613271 100644
--- a/web/WEB-INF/sql.properties
+++ b/web/WEB-INF/sql.properties
@@ -24,7 +24,7 @@
     where key_name = ?
   </entry>
   <entry key="getUserNameList">
-    select user_name,user_first,user_last,user_email from app.users
+    select user_name from app.users
   </entry>
   <entry key="getUserList">
     select * from app.users
@@ -38,6 +38,12 @@
   <entry key="deleteUserRoles">
     delete from app.user_roles where user_name = ?
   </entry>
+  <entry key="getUserData">
+    select user_name,user_first,user_last,user_email from app.users where user_name = ?
+  </entry>
+  <entry key="getUser">
+    select * from app.users where user_name = ?
+  </entry>
   <entry key="getDateList">
     select substr(or_zeit,1,8) as tag, count(*) as anz from app.orte as orte 
     where or_pers_id = ?  

--
Gitblit v1.9.3