Merge pull request #241 from status-im/feature/password-validation

Password validation in !keypair command

Former-commit-id: 20d08c8466
This commit is contained in:
Roman Volosovskyi 2016-09-22 11:50:35 +03:00 committed by GitHub
commit 8201cf286c
1 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,3 @@
var phones = [
{
number: "89171111111",
@ -186,6 +185,18 @@ status.response({
params: [params.value]
};
},
validator: function (params) {
if(!params.value || params.value.length < 6){
return {
errors: [
status.components.validationMessage(
"Password",
"Password should be not less then 6 symbols."
)
]
};
}
},
preview: function (params) {
return status.components.text(
{