Skip to content

Instantly share code, notes, and snippets.

@nitindhar7
Created May 6, 2015 14:15
Show Gist options
  • Select an option

  • Save nitindhar7/9608815b6f2a325de2c4 to your computer and use it in GitHub Desktop.

Select an option

Save nitindhar7/9608815b6f2a325de2c4 to your computer and use it in GitHub Desktop.
val registerForm = Form(
mapping(
"email" -> nonEmptyText.verifying(emailCheckConstraint),
"password" -> nonEmptyText.verifying(passwordCheckConstraint),
"cities" -> optional(list(text)),
"other_city" -> optional(text)
)(RegisterForm.apply)(RegisterForm.unapply).verifying(citiesCheckConstraint)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment