Merge pull request #23 from matrix-org/kegan/reg-errors-176
Add missing enum value to registration password complexity check
This commit is contained in:
commit
e6f9c6e777
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ module.exports = {
|
||||||
PasswordMismatch: 'PasswordMismatch',
|
PasswordMismatch: 'PasswordMismatch',
|
||||||
TooShort: 'TooShort',
|
TooShort: 'TooShort',
|
||||||
Missing: 'Missing',
|
Missing: 'Missing',
|
||||||
InUse: 'InUse'
|
InUse: 'InUse',
|
||||||
|
Length: 'Length'
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue