diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3f93ac3d07..6cb4322635 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,9 @@ updates: - "/tutorial/**" schedule: interval: "weekly" + day: "monday" + time: "06:00" + timezone: "UTC" # Security updates ignore this limit: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#open-pull-requests-limit- open-pull-requests-limit: 0 ignore: diff --git a/docs/pages/authentication.mdx b/docs/pages/authentication.mdx index f85fd5aa03..1b178baea8 100644 --- a/docs/pages/authentication.mdx +++ b/docs/pages/authentication.mdx @@ -94,11 +94,12 @@ console.log(body); ## Workspace permissions [#permissions] -Using [organizations](/docs/authentication/organizations), you can create workspaces in your -application, compartmentalizing all resources such as inbox notifications and -rooms. This includes everything associated with rooms such as comment threads, -realtime data stored, and more. This allows you to add a workspace switcher to -your application, separating each of your customers/organizations. +Using [organizations](/docs/authentication/organizations), you can create +workspaces in your application, compartmentalizing all resources such as inbox +notifications and rooms. This includes everything associated with rooms such as +comment threads, realtime data stored, and more. This allows you to add a +workspace switcher to your application, separating each of your +customers/organizations.
`["room:write"]`
- Full access. Enables people to view and edit the room. On the client, + Full access. Enables people to view and edit the room, and create comments. + On the client, [`canWrite`](/docs/api-reference/liveblocks-react#Checking-user-permissions) is `true`.
+
`["room:read", "room:presence:write", "comments:write"]`
+
+ Read access with comment creation and presence. Enables people to create + comments and edit their presence, but only view the room’s storage. On + the client, + [`canWrite`](/docs/api-reference/liveblocks-react#Checking-user-permissions) + is `false`. +
`["room:read", "room:presence:write"]`
Read access with presence. Enables people to edit their presence, but only - view the room’s storage. On the client, + view the room’s storage. Users can view comments, but not interact + with them. On the client, [`canWrite`](/docs/api-reference/liveblocks-react#Checking-user-permissions) is `false`.