DBPermissionSet
Represents permissions in Dexie Cloud
export interface DBPermissionSet {
/** Permission to add objects into given tables
*/
add?: "*" /* all tables */ | string[];
/** Permission to update given properties in given tables.
*
*/
update?:
| "*" // all tables
| {
[tableName: string]: string[] /* property list */ | "*" /* all properties */ ;
};
/** Full permission within given tables, including deleting objects that you do not own.
*
*/
manage?: "*" | string[];
}
See also the Permissions section on the Access Control page that describes the permissions.
Dexie Cloud Docs
- Access Control in Dexie Cloud
- Authentication in Dexie Cloud
- Consistency in Dexie Cloud
- DBPermissionSet
- Dexie Cloud CLI
- Dexie Cloud Docs
- Dexie Cloud REST API
- DexieCloudOptions
- Invite
- Purchase Subscription
- Run Dexie Cloud on Own Servers
- Sharding and Scalability
- SyncState
- UserLogin
- db.cloud.configure()
- db.cloud.currentUser
- dexie-cloud-addon