You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updated Swift usage
Updated Swift usage based on
parse-community/Parse-SDK-iOS-OSX#1311
* Update cloud-code.md
* Added Example on how to abort Hooks and functions
Added Example on how to abort Hooks and functions
Source: https://github.com/parse-community/parse-server/blob/master/3.0.0.md
* Revert "Added Example on how to abort Hooks and functions"
This reverts commit 3350d09.
* Added Example on how to abort Hooks and functions
Added Example on how to abort Hooks and functions
Source: https://github.com/parse-community/parse-server/blob/master/3.0.0.md
* Revert "Added Example on how to abort Hooks and functions"
This reverts commit 3350d09.
* Update Swift login snippet to work with current version of Swift
Update to change
1. NSError to Error when logging in
2. use updated function name
* Updated currentUser() to current()
Updated currentUser() to current() when checking for currentuser
* Update login / logout
Update to swift and ObjC login section to change
currentUser() to current()
* Revert "Update login / logout"
This reverts commit 3299b67.
* updated for latest version of Parse.
updated for latest version of Parse.
* few swift updates i found that were outdated
Co-authored-by: Jayson Ng <[email protected]>
Sometimes it's inconvenient to manage permissions on a per-user basis, and you want to have groups of users who get treated the same (like a set of admins with special powers). Roles are are a special kind of object that let you create a group of users that can all be assigned to the ACL. The best thing about roles is that you can add and remove users from a role without having to update every single object that is restricted to that role. To create an object that is writeable only by admins:
317
+
Sometimes it's inconvenient to manage permissions on a per-user basis, and you want to have groups of users who get treated the same (like a set of admins with special powers). Roles are a special kind of object that let you create a group of users that can all be assigned to the ACL. The best thing about roles is that you can add and remove users from a role without having to update every single object that is restricted to that role. To create an object that is writeable only by admins:
0 commit comments