Add summary column to documents

This commit is contained in:
Tom Moor
2024-02-16 13:25:17 -05:00
parent 0219885548
commit 7555240413
4 changed files with 25 additions and 5 deletions

View File

@@ -36,6 +36,9 @@ export const DocumentValidation = {
/** The maximum length of the document title */
maxTitleLength: 100,
/** The maximum length of the document summary */
maxSummaryLength: 1000,
/** The maximum size of the collaborative document state */
maxStateLength: 1500 * 1024,
};