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
- Add demo users
- Add public data
- Authentication in Dexie Cloud
- Consistency in Dexie Cloud
- DBPermissionSet
- Dexie Cloud API
- Dexie Cloud CLI
- Dexie Cloud Docs
- Dexie Cloud REST API
- DexieCloudOptions
- Invite
- Limits
- Member
- PersistedSyncState
- Purchase Subscription
- Realm
- Role
- Run Dexie Cloud on Own Servers
- Sharding and Scalability
- SyncState
- UserLogin
- db.cloud.configure()
- db.cloud.currentUser
- db.cloud.currentUserId
- db.cloud.events.syncComplete
- db.cloud.invites
- db.cloud.login()
- db.cloud.logout()
- db.cloud.options
- db.cloud.permissions()
- db.cloud.persistedSyncState
- db.cloud.roles
- db.cloud.schema
- db.cloud.sync()
- db.cloud.syncState
- db.cloud.userInteraction
- db.cloud.usingServiceWorker
- db.cloud.version
- db.cloud.webSocketStatus
- db.members
- db.realms
- db.roles
- dexie-cloud-addon