Skip to content

Commit ec4079c

Browse files
committed
chore(backend): 文字数上限を5,000文字へ引き上げ
1 parent 5bea737 commit ec4079c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/const.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: AGPL-3.0-only
44
*/
55

6-
export const MAX_NOTE_TEXT_LENGTH = 3000;
6+
export const MAX_NOTE_TEXT_LENGTH = 5000;
77

88
export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min
99
export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days

0 commit comments

Comments
 (0)