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.
Hi Stephanie,
Please take a look at the following link for setting Entity level permissions and the corresponding code snippets as well:
http://devcenter.kinvey.com/ios/guides/security#Entitylevelpermissions
Also, provide me with following information:
Thanks,
Pranav
Kinvey Support
stephanie lo
I'm trying to save a new object with .setGloballyWritable/setGloballyReadable true. I did the below code before saving that was similar to some of the examples:
collection.metadata = KCSMetadata()
collection.metadata.setGloballyWritable(true)
collection.metadata.setGloballyReadable(true)
However, when I try to save the object, I get
'NSInvalidArgumentException', reason: '*** setObjectForKey: object cannot be nil (key: _kmd)'
Is there a way to set _acl without creating the object first and backtracking?