As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
From a security standpoint you need to be able to be logged in as that user or be logged in via your Master Secret which is not something you should make public.
Do you want to add support in your app for a logged in user to say who can modify/read their information? Or do you want to retroactively do that via a script or scheduled code?
k
killerwilmer
said
about 9 years ago
The idea is that a user can create more users (patients), then the user who created them (patients) can pass these users (patients) to another user, and the latter can edit, then I need to give permissions in the ACL to these users (patients).
killerwilmer
function(response) {
$scope.user = response;
var acl = new Kinvey.Acl($scope.user);
acl.addWriter($scope.currentcontact.Contact.contact.user_id);
acl.addReader($scope.currentcontact.Contact.contact.user_id);
var promise = Kinvey.User.update($scope.user, {
success: function() {
console.log("...done");
}
});
I have this. It does not work.