REST Service for POPCORN - ILIAS
alex
2025-06-22 56c4f060543542692accdbfab7cb1fff82a7f40f
lib/libIlias.js
@@ -9,7 +9,10 @@
/////////////////////////////////////////////////////////////////////////
module.exports = {
   getUser,
   importIliasUser,
   deleteUser,
   deleteAllUsers,
@@ -18,6 +21,17 @@
/////////////////////////////////////////////////////////////////////////
/////// GET USER ////////////////////////////////////////////////////////////////
async function getUser (usr_id) {
   const sp = new URLSearchParams({
      command: "getUser",
      usr_id,
      token: iliastoken,
   })
   let url2 = `${url}?${sp.toString()}`
   const res = await fetch(url2, {method: "GET"})
   return await res.json() //
}
/////// USER IMPORT ////////////////////////////////////////////////////////////////