Skip to content

Commit

Permalink
パスワードの複雑性の向上
Browse files Browse the repository at this point in the history
  • Loading branch information
seto1 committed Jun 28, 2024
1 parent 5539535 commit fb669bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/baser-core/config/setting.php
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@
'minLength' => 12,
// 入力必須な文字種
'requiredCharacterTypes' => [
// 数値
// 数字
'numeric',
// 大文字英字
'uppercase',
Expand Down
2 changes: 1 addition & 1 deletion plugins/baser-core/src/Model/Table/UsersTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public function validationPassword(Validator $validator): Validator
'pattern' => '[a-z]',
],
'symbol' => [
'name' => __d('baser_core', '大文字英字'),
'name' => __d('baser_core', '記号'),
'pattern' => '[' . $quotedSymbol . ']',
],
];
Expand Down

0 comments on commit fb669bf

Please sign in to comment.