From c716e712d8454919d2c345fe5268c3f038a31e38 Mon Sep 17 00:00:00 2001 From: Steve Ross Date: Tue, 20 Jan 2015 09:48:07 -0800 Subject: [PATCH] added minLength requireDigits requireAlpha settings --- README.md | 3 +++ client/views/signUp/signUp.coffee | 7 ++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3afeb255..1a77fc88 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,9 @@ Since this is a young package, we are maintaining compatibility with accounts-ui type: "text", // The type of field you want required: true // Adds html 5 required property if true }] + requireDigits = true, // true by default, set to false if digits not required in password + requireAlpha = true, // true by default, set to false if alpha not required in password + minLength = 7 // 7 characters by default, set to whatever is required }); }); ``` diff --git a/client/views/signUp/signUp.coffee b/client/views/signUp/signUp.coffee index 8eb32bc8..db0e86cf 100644 --- a/client/views/signUp/signUp.coffee +++ b/client/views/signUp/signUp.coffee @@ -86,11 +86,12 @@ AccountsEntry.entrySignUpEvents = { passwordErrors = do (password)-> errMsg = [] msg = false - if password.length < 7 + minLength = if AccountsEntry.settings.minLength? then AccountsEntry.settings.minLength else 7 + if password.length < minLength errMsg.push t9n("error.minChar") if password.search(/[a-z]/i) < 0 - errMsg.push t9n("error.pwOneLetter") - if password.search(/[0-9]/) < 0 + errMsg.push t9n("error.pwOneLetter") and AccountsEntry.settings.requireAlpha? + if password.search(/[0-9]/) < 0 and AccountsEntry.settings.requireDigits? errMsg.push t9n("error.pwOneDigit") if errMsg.length > 0