get users list

This commit is contained in:
Valentin CZERYBA 2022-07-28 00:49:23 +02:00
parent 7022508ec0
commit 18529779f4

View File

@ -11,4 +11,9 @@ instance.get("users/count", { withCredentials: true }).then(function(response){
} }
});
instance.get("users", {withCredentials: true}).then(function(response){
console.log(response);
}) })