fix: Add server-side validation of comment length

This commit is contained in:
Tom Moor
2023-06-29 22:41:57 -04:00
parent 4bec08ee05
commit 8957e86c12
4 changed files with 54 additions and 2 deletions

View File

@@ -208,3 +208,6 @@ export const NotificationEventDefaults = {
[NotificationEventType.Features]: true,
[NotificationEventType.ExportCompleted]: true,
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type ProsemirrorData = Record<string, any>;