diff options
author | Byron Jones <glob@mozilla.com> | 2015-03-26 04:56:02 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-26 04:56:02 +0100 |
commit | d4a53a6c7bce28a66ff0dc70def2469692f8444c (patch) | |
tree | 59e8e8cf8f6c4fee8acee84e4d3f57e404227b7c /Bugzilla/WebService | |
parent | 48c23b11f2fc9d7f9a0666e58e77b8a03eb94dbb (diff) | |
download | bugzilla-d4a53a6c7bce28a66ff0dc70def2469692f8444c.tar.gz bugzilla-d4a53a6c7bce28a66ff0dc70def2469692f8444c.tar.xz |
Bug 1147550: Minimum password length handler not trusted by password change
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Constants.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Constants.pm b/Bugzilla/WebService/Constants.pm index 4678d468d..a8d2f1db2 100644 --- a/Bugzilla/WebService/Constants.pm +++ b/Bugzilla/WebService/Constants.pm @@ -150,7 +150,8 @@ use constant WS_ERROR_CODE => { auth_invalid_email => 302, extern_id_conflict => -303, auth_failure => 304, - password_current_too_short => 305, + password_too_short => 305, + password_not_complex => 305, api_key_not_valid => 306, api_key_revoked => 306, auth_invalid_token => 307, |