Skip to content
Snippets Groups Projects

Issue #3347172: Fix the problem that the OpenStack Security Group create form in SPA cannot be saved due to a validation error

Merged Issue #3347172: Fix the problem that the OpenStack Security Group create form in SPA cannot be saved due to a validation error
Merged Tomotaka Hosomi requested to merge issue/cloud-3347172:3347172-fix-the-problem into 5.x
1 file
+ 1
0
Compare changes
  • Side-by-side
  • Inline
@@ -888,6 +888,7 @@ class ApiController extends ControllerBase implements ApiControllerInterface {
case 'create_openstack_security_group':
/** @var \Drupal\aws_cloud\Entity\Ec2\SecurityGroupInterface $entity */
$entity->setName($request->get('group_name', ''));
$entity->setGroupName($request->get('group_name', ''));
$entity->setDescription($request->get('description', ''));
$method_name = 'createOpenStackSecurityGroup';
Loading