Skip to content

Instantly share code, notes, and snippets.

@sergiopvilar
Created January 3, 2015 22:06
Show Gist options
  • Save sergiopvilar/b4b586d3f81d11a487dc to your computer and use it in GitHub Desktop.
Save sergiopvilar/b4b586d3f81d11a487dc to your computer and use it in GitHub Desktop.
var validations = Map(
"email" -> Map(
"function" -> ((bo: CRUD, email: String) => bo.findBy("email", email).size() > 0),
"message" -> "Este email já está em uso"
),
"username" -> Map(
"function" -> ((bo: CRUD, username: String) => bo.findBy("username", username).size() > 0),
"message" -> "Este nome de usuário já está em uso"
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment