Merge pull request #1379 from nextcloud/stable10-backport-711
stable10 backport: Apply password policy on user creation
This commit is contained in:
commit
318ea301c3
|
@ -83,6 +83,8 @@ class Database extends \OC\User\Backend implements \OCP\IUserBackend {
|
|||
*/
|
||||
public function createUser($uid, $password) {
|
||||
if (!$this->userExists($uid)) {
|
||||
$event = new GenericEvent($password);
|
||||
$this->eventDispatcher->dispatch('OCP\PasswordPolicy::validate', $event);
|
||||
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )');
|
||||
$result = $query->execute(array($uid, \OC::$server->getHasher()->hash($password)));
|
||||
|
||||
|
|
Loading…
Reference in New Issue