Skip to content

Commit

Permalink
feat: lower message max characters from 1000 to 400
Browse files Browse the repository at this point in the history
  • Loading branch information
mastree committed Aug 24, 2024
1 parent 1c14ab3 commit d54b118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/message-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createResponse } from "./common";
import MessageService, { Message } from "../models/message";

const kMaxNameCharacters = 40;
const kMaxMessageCharacters = 1000;
const kMaxMessageCharacters = 400;

type GetPageQuery = {
page: number;
Expand Down

0 comments on commit d54b118

Please sign in to comment.