🚀New lib version v1.0.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-04-18 18:05:41 +00:00
parent a014e77edf
commit f4905b8df6
31 changed files with 143 additions and 31 deletions

View File

@@ -6,13 +6,19 @@ class UserService {
/**
* Get all
* Lists all users. <br> This includes their groups and permissions granted to them.
* @param page
* @param pageSize
* @result ResponseUser
* @throws ApiError
*/
static async userControllerGetAll() {
static async userControllerGetAll(page, pageSize) {
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/users`,
query: {
'page': page,
'page_size': pageSize,
},
});
return result.body;
}