Created
July 8, 2011 16:37
-
-
Save ekryski/1072213 to your computer and use it in GitHub Desktop.
Everyauth Functions Overriding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
, validateRegistration: function (regParams, errors) { | |
if (regParams.password.length < 8) | |
errors.push('Password must be at least 8 characters. '); | |
return errors; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment