Skip to content

Commit 6785eb1

Browse files
authored
Merge pull request #154 from LoicComparet/patch-1
Fix Keycloak BadRequestException due to unrecognized field "flowId"
2 parents b6894cd + 99b61fe commit 6785eb1

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

Diff for: src/Representation/AuthenticationExecutionExport.php

+6-11
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,17 @@
1414
* @method bool|null getAuthenticatorFlow()
1515
* @method self withAuthenticatorFlow(?bool $authenticatorFlow)
1616
*
17-
* @method string|null getFlowId()
18-
* @method self withFlowId(?string $flowId)
19-
*
20-
* @method string|null getId()
21-
* @method self withId(?string $id)
22-
*
23-
* @method string|null getParentFlow()
24-
* @method self withParentFlow(?string $parentFlow)
17+
* @method string|null getFlowAlias()
18+
* @method self withFlowAlias(?string $flowAlias)
2519
*
2620
* @method int|null getPriority()
2721
* @method self withPriority(?int $priority)
2822
*
2923
* @method string|null getRequirement()
3024
* @method self withRequirement(?string $requirement)
3125
*
26+
* @method bool|null getUserSetupAllowed()
27+
* @method self withUserSetupAllowed(?bool $userSetupAllowed)
3228
* @codeCoverageIgnore
3329
*/
3430
class AuthenticationExecutionExport extends Representation
@@ -37,10 +33,9 @@ public function __construct(
3733
protected ?string $authenticator = null,
3834
protected ?string $authenticatorConfig = null,
3935
protected ?bool $authenticatorFlow = null,
40-
protected ?string $flowId = null,
41-
protected ?string $id = null,
42-
protected ?string $parentFlow = null,
36+
protected ?string $flowAlias = null,
4337
protected ?int $priority = null,
4438
protected ?string $requirement = null,
39+
protected ?bool $userSetupAllowed = null,
4540
) {}
4641
}

0 commit comments

Comments
 (0)