From c331badb5938af5190594879a3166260ac4b61f9 Mon Sep 17 00:00:00 2001 From: Art Date: Mon, 20 Sep 2021 18:48:36 +0300 Subject: [PATCH] refactored getAllUsers in frontend to fetch all the users (using backend pagination) (#21) --- support-portal-frontend/src/app/service/user.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support-portal-frontend/src/app/service/user.service.ts b/support-portal-frontend/src/app/service/user.service.ts index 52dfb9b..d5ba3db 100644 --- a/support-portal-frontend/src/app/service/user.service.ts +++ b/support-portal-frontend/src/app/service/user.service.ts @@ -18,7 +18,7 @@ export class UserService { public getAllUsers(): Observable { return this.httpClient - .get(`${this.host}/user`); + .get(`${this.host}/user?size=2147483647`); } public addUser(formData: FormData): Observable {