REST Service for POPCORN - ILIAS
alex
2025-06-22 2bdf55d096a034085fd18a314153fc8d33848f7b
app.js
@@ -109,6 +109,11 @@
      }
   })
   .post("/api/user", async function (req, res) {
      const user = req.body
      const res2 = await libIlias.importIliasUser(user) // TODO import or update if already available
      return res.send(res2)
   })
   .delete("/api/user", async function (req, res) { // DELETE ALL users
      const res2 = await libIlias.deleteAllUsers()