Skip to content

Commit

Permalink
increase forum post max length - #15575
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jun 27, 2024
1 parent 1f2dc21 commit 240a9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/forum/src/main/ForumForm.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final private[forum] class ForumForm(
single("categ" -> nonEmptyText.into[ForumCategId])

private def userTextMapping(inOwnTeam: Boolean, previousText: Option[String] = None)(using me: Me) =
cleanText(minLength = 3, 10_000)
cleanText(minLength = 3, 15_000)
.verifying(
"You have reached the daily maximum for links in forum posts.",
t => inOwnTeam || promotion.test(me, t, previousText)
Expand Down

0 comments on commit 240a9f8

Please sign in to comment.