forked from Trustie/forgeplus
修复:后台管理密码位数为8
This commit is contained in:
parent
114cb49c13
commit
907ee60c1d
|
|
@ -134,11 +134,11 @@ $(document).on('turbolinks:load', function() {
|
|||
rules: {
|
||||
"user[password]": {
|
||||
required: false,
|
||||
minlength: 5
|
||||
minlength: 8
|
||||
},
|
||||
"user[password_confirmation]": {
|
||||
required: false,
|
||||
minlength: 5,
|
||||
minlength: 8,
|
||||
equalTo: "#user_password"
|
||||
},
|
||||
},
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Loading…
Reference in New Issue