Skip to content

Commit

Permalink
Merge pull request #73 from mon-petit-placement/develop
Browse files Browse the repository at this point in the history
add missing parameters on getUserCount
  • Loading branch information
MohammadWaleed authored Oct 25, 2021
2 parents 5b0e69c + 11022f8 commit 77e3dfb
Showing 1 changed file with 32 additions and 1 deletion.
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 77e3dfb

Please sign in to comment.