We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3451ef4 commit ec00840Copy full SHA for ec00840
src/Identity/v3/Api.php
@@ -540,6 +540,7 @@ public function patchUser(): array
540
'description' => $this->params->desc('user'),
541
'email' => $this->params->email(),
542
'enabled' => $this->params->enabled('user'),
543
+ 'password' => $this->params->userPassword(),
544
]
545
];
546
}
src/Identity/v3/Params.php
@@ -279,6 +279,13 @@ public function enabled($resource)
279
280
281
282
+ public function userPassword(): array
283
+ {
284
+ return [
285
+ 'description' => 'The new password for the user.'
286
+ ];
287
+ }
288
+
289
public function defaultProjectId(): array
290
{
291
return [
0 commit comments