Skip to content

Commit

Permalink
Merge pull request #102 from gigya/develop
Browse files Browse the repository at this point in the history
Version 9.x-1.3.1
  • Loading branch information
Ynhockey authored Oct 4, 2021
2 parents b1ab646 + de92fe0 commit 2479233
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"type": "drupal-module",
"description": "Gigya Drupal module",
"license": "GPL-2.0-or-later",
"version": "1.3.1",
"authors": [
{
"name": "Yuval Perelman",
Expand Down
2 changes: 1 addition & 1 deletion gigya/gigya.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ type: module
description: 'Gigya core module'
package: Gigya
configure: gigya.admin.form
version: '9.x-1.3'
version: '9.x-1.3.1'
core_version_requirement: ^8 || ^9
2 changes: 1 addition & 1 deletion gigya_ds/gigya_ds.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ package: Gigya
dependencies:
- gigya
- gigya_raas
version: '9.x-1.3'
version: '9.x-1.3.1'
core_version_requirement: ^8 || ^9
2 changes: 1 addition & 1 deletion gigya_raas/gigya_raas.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ package: Gigya
configure: gigya.raas.config
dependencies:
- gigya
version: '9.x-1.3'
version: '9.x-1.3.1'
core_version_requirement: ^8 || ^9
2 changes: 1 addition & 1 deletion gigya_raas/gigya_raas.services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ services:
gigya_raas.event_subscriber:
class: Drupal\gigya_raas\EventSubscriber\GigyaRaasEventSubscriber
tags:
- { name: 'event_subscriber' }
- { name: 'event_subscriber' }
2 changes: 1 addition & 1 deletion gigya_raas/src/GigyaController.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public function gigyaRaasLoginAjax(Request $request) {
}

$user = User::create(
array('name' => $username, 'pass' => Drupal::service('password_generator')->generate(32), 'status' => 1, 'mail' => $email)
array('name' => $username, 'pass' => Drupal::hasService('password_generator') ? Drupal::service('password_generator')->generate(32) : user_password(), 'status' => 1, 'mail' => $email)
);
$user->save();
$this->helper->processFieldMapping($gigyaUser, $user);
Expand Down
2 changes: 1 addition & 1 deletion gigya_user_deletion/gigya_user_deletion.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ type: module
description: 'Allows permanently deleting users from Gigya and Drupal databases'
package: Gigya
configure: gigya.cron.form
version: '9.x-1.3'
version: '9.x-1.3.1'
core_version_requirement: ^8 || ^9
dependencies:
- gigya
Expand Down

0 comments on commit 2479233

Please sign in to comment.