From fc75c661d096e4e1b85ec83f0851fb24bfed4558 Mon Sep 17 00:00:00 2001
From: Alexander Schlemmer <alexander.schlemmer@ds.mpg.de>
Date: Tue, 11 Dec 2018 11:52:27 +0100
Subject: [PATCH] proposals for user administration

---
 doc/User_Administration.md | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 doc/User_Administration.md

diff --git a/doc/User_Administration.md b/doc/User_Administration.md
new file mode 100644
index 00000000..a51894cd
--- /dev/null
+++ b/doc/User_Administration.md
@@ -0,0 +1,34 @@
+Author: Timm Fitschen
+
+Email: timm.fitschen@ds.mpg.de
+
+Date: 2013-02-23
+
+# No Proposal
+http://caosdb/register
+
+# Proposal
+
+## Add User
+
+* POST Request is to be send to `http://host:port/User`.
+* This requires authetication as user _admin_ (default password: _adminpw_).
+* Http body:
+
+
+        <Post>
+          <User name="${username}" password="${md5ed_password} />
+        </Post>
+
+## Delete User
+
+* DELETE Request
+* admin authentication required.
+* Http body:
+
+
+        <Delete>
+          <User name="${username}/>
+        </Delete>
+
+The user to be deleted may also be identified by his id (`id="${id}"`) instead of his name.
-- 
GitLab