decrease lowest possible uscf rating to 100

100 seems to be the rating floor of the USCF rating system:
https://chess.stackexchange.com/a/13788/3122
This commit is contained in:
Niklas Fiekas 2017-12-11 23:28:58 +01:00
parent ce5cbf2cf0
commit 43002e60b3

View file

@ -21,7 +21,7 @@ final class DataForm(authenticator: Authenticator) {
"firstName" -> nameField,
"lastName" -> nameField,
"fideRating" -> optional(number(min = 600, max = 3000)),
"uscfRating" -> optional(number(min = 600, max = 3000)),
"uscfRating" -> optional(number(min = 100, max = 3000)),
"ecfRating" -> optional(number(min = 0, max = 300)),
"links" -> optional(nonEmptyText(maxLength = 3000))
)(Profile.apply)(Profile.unapply))