Skip to content

Commit

Permalink
Make the minimum cfcRating 200.
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Nov 24, 2024
1 parent ef1787c commit 6d7afb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/user/src/main/UserForm.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class UserForm:
"uscfRating" -> optional(number(min = 100, max = 3000)),
"ecfRating" -> optional(number(min = 0, max = 3000)),
"rcfRating" -> optional(number(min = 0, max = 3000)),
"cfcRating" -> optional(number(min = 0, max = 3000)),
"cfcRating" -> optional(number(min = 200, max = 3000)),
"dsbRating" -> optional(number(min = 0, max = 3000)),
"links" -> optional(cleanNoSymbolsAndNonEmptyText(maxLength = 3000))
)(Profile.apply)(unapply)
Expand Down

0 comments on commit 6d7afb5

Please sign in to comment.