fix: Limit ws payload size

This commit is contained in:
Tom Moor
2022-08-16 10:27:55 +02:00
parent cfa7ecd7f8
commit ed8176ca7d
3 changed files with 6 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ export const DocumentValidation = {
maxTitleLength: 100,
/** The maximum size of the collaborative document state */
maxStateLength: 1000000,
maxStateLength: 1500 * 1024,
};
export const PinValidation = {