diff --git a/docs/dev-guide/configuration.md b/docs/dev-guide/configuration.md index 24f5253e8..724d4bab9 100644 --- a/docs/dev-guide/configuration.md +++ b/docs/dev-guide/configuration.md @@ -1580,9 +1580,13 @@ Default: **unset** Properties: * `enabled` - Whether the feature is enabled or not. * `collabServerBaseUrl` - The [server](https://github.com/jitsi/excalidraw-backend) used to support whiteboard collaboration. +* `userLimit` - The user access limit to the whiteboard, introduced as a means to control the performance. +* `limitUrl` - The url for more info about the whiteboard and its usage limitations. ```javascript whiteboard: { enabled: true, - collabServerBaseUrl: 'https://excalidraw-backend.example.com' + collabServerBaseUrl: 'https://excalidraw-backend.example.com', + userLimit: 25, + limitUrl: 'https://example.com/blog/whiteboard-limits' }