Skip to content

Commit

Permalink
chore(backend): 文字数上限を5,000文字へ引き上げ
Browse files Browse the repository at this point in the history
  • Loading branch information
nafu-at committed Jul 20, 2024
1 parent 5bea737 commit ec4079c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/

export const MAX_NOTE_TEXT_LENGTH = 3000;
export const MAX_NOTE_TEXT_LENGTH = 5000;

export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min
export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days
Expand Down

0 comments on commit ec4079c

Please sign in to comment.