there is some way to create a user on firebase without automatic login and firebase-admin? Something like:
auth.createUserAndRetrieveDataWithEmailAndPassword(cd.email,cd.senha).then(user => {
console.log(user);
})
.catch(error => {
console.log("error");
});
or
auth.createUserWithEmailAndPassword(cd.email,cd.senha).then(user => {
console.log(user);
})
.catch(error => {
console.log("error");
});