You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

11 lines
302 B

// _core : social/userPessoa
const dbComunidade = _db.get('comunidade', _req.getString("uid"))
_db.delete(
"pessoa_comunidade",
_val.map()
.set("pessoa_id", userPessoa().getInt("id"))
.set("comunidade_id", dbComunidade.getInt("id"))
)
_out.json(_val.map().set("result", true))