From 115128111cf975f286ebbe00ce807eb04744296a Mon Sep 17 00:00:00 2001 From: Mihaela Dumitru Date: Fri, 1 Mar 2024 15:07:15 +0200 Subject: [PATCH] Update configuration.md (#495) --- docs/dev-guide/configuration.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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' }