8000 Prepare for 0.25.0 by MohammadWaleed · Pull Request #63 · MohammadWaleed/keycloak-admin-client · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Prepare for 0.25.0 #6 8000 3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Sep 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ Note: Ids are sent as clientScopeId or clientId and mapperId everything else is
| Get offline sessions associated with the user and client | | ❌ |
| Remove TOTP from the user | | ❌ |
| Set up a new password for the user. | resetUserPassword | ✔️ |
| Send an email-verification email to the user An email contains a link the user can click to verify their email address. | | ❌ |
| Send an email-verification email to the user An email contains a link the user can click to verify their email address. | sendVerifyEmail | ✔️ |
| Get sessions associated with the user | | ❌ |

## [Root]()
Expand Down
3 changes: 2 additions & 1 deletion src/Admin/KeycloakClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@
* @method array updatePartialUser(array $args = array()) { @command Keycloak updatePartialUser }
* @method array deleteUser(array $args = array()) { @command Keycloak deleteUser }
* @method array executeActionsEmail(array $args = array()) { @command Keycloak executeActionsEmail }
* @method array sendVerifyEmail(array $args = array()) { @command Keycloak sendVerifyEmail }
* @method array addUserToGroup(array $args = array()) { @command Keycloak addUserToGroup }
* @method array deleteUserFromGroup(array $args = array()) { @command Keycloak deleteUserFromGroup }
* @method array resetUserPassword(array $args = array()) { @command Keycloak resetUserPassword }
Expand Down Expand Up @@ -366,7 +367,7 @@ public function setBaseUri($baseUri)
*/
public function getBaseUri()
{
$this->getConfig('baseUri');
return $this->getConfig('baseUri');
}


Expand Down
32 changes: 32 additions & 0 deletions src/Admin/Resources/keycloak-1_0.php
Original file line number Diff line number Diff line change
Expand Up @@ -5256,6 +5256,38 @@
),
),
),

'sendVerifyEmail' => array(
'uri' => 'auth/admin/realms/{realm}/users/{id}/send-verify-email',
'description' => 'Send an email-verification email to the user An email contains a link the user can click to verify their email address.',
'httpMethod' => 'PUT',
'parameters' => array(
'realm' => array(
'location' => 'uri',
'description' => 'The Realm name',
'type' => 'string',
'required' => true,
),
'id' => array(
'location' => 'uri',
'description' => 'User id',
'type' => 'string',
'required' => true,
),
'client_id' => array(
'location' => 'query',
'description' => 'Client id',
'type' => 'string',
'required' => false,
),
'redirect_uri' => array(
'location' => 'query',
'description' => 'Redirect uri',
'type' => 'string',
'required' => false,
),
),
),

'addUserToGroup' => array(
'uri' => 'auth/admin/realms/{realm}/users/{id}/groups/{groupId}',
Expand Down
0