For example:
await collaboration.updatePermission({ isDocPublic: true})
Check whether the current user is allowed to add comments in current collaboration.
You can udpate the permission by using Collaboration.updatePermission
.
For example:
await collaboration.updatePermission({ isAllowComment: true })
Check whether the collaboration can be joined only by invitation.
You can udpate the permission by using Collaboration.updatePermission
.
For example:
await collaboration.updatePermission({ isDocPublic: false})
Check whether the current user is member of the collaboration.
Check whether the current user is owner of the collaboration.
Generated using TypeDoc
Check whether the collaboration can be joined by anyone with link.
You can udpate the permission by using
Collaboration.updatePermission
.