Skip to content

Commit

Permalink
Merge pull request #75 from MohammadWaleed/develop
Browse files Browse the repository at this point in the history
Prepare for 0.27.0
  • Loading branch information
MohammadWaleed authored Dec 5, 2021
2 parents 329b435 + 77e3dfb commit 025a40e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![Total Downloads](https://img.shields.io/packagist/dt/mohammad-waleed/keycloak-admin-client.svg?style=flat-square)](https://packagist.org/packages/mohammad-waleed/keycloak-admin-client)

[![Donate](https://img.shields.io/badge/Paypal-Donate-blue?style=flat-square)](https://paypal.me/mbarghash?locale.x=en_US)

- [Introduction](#introduction)
- [How to use](#how-to-use)
- [Customization](#customization)
Expand Down
33 changes: 32 additions & 1 deletion src/Admin/Resources/keycloak-1_0.php
Original file line number Diff line number Diff line change
Expand Up @@ -5023,7 +5023,7 @@
),
) + $UserRepresentation
),

'getUserCount' => array(
'uri' => 'auth/admin/realms/{realm}/users/count',
'description' => 'Get the number of users',
Expand All @@ -5035,6 +5035,37 @@
'type' => 'string',
'required' => true,
),
'emailVerified' => array(
'location' => 'query',
'type' => 'boolean',
'required' => false,
),
'email' => array(
'location' => 'query',
'type' => 'string',
'required' => false,
),
'firstName' => array(
'location' => 'query',
'type' => 'string',
'required' => false,
),
'lastName' => array(
'location' => 'query',
'type' => 'string',
'required' => false,
),
'search' => array(
'location' => 'query',
'description' => 'A String contained in username, first or last name, or email',
'type' => 'string',
'required' => false,
),
'username' => array(
'location' => 'query',
'type' => 'string',
'required' => false,
)
),
),

Expand Down

0 comments on commit 025a40e

Please sign in to comment.