From c70907820193ea5fa53596a898c910423413002f Mon Sep 17 00:00:00 2001 From: Albin Henriksson <albhe428@student.liu.se> Date: Thu, 1 Apr 2021 15:05:25 +0000 Subject: [PATCH] Fix: missing parameters --- server/app/core/dto.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/app/core/dto.py b/server/app/core/dto.py index 6c47877c..4c1fc15a 100644 --- a/server/app/core/dto.py +++ b/server/app/core/dto.py @@ -16,6 +16,8 @@ class UserDTO: "email": fields.String(), "role_id": fields.Integer(), "city_id": fields.Integer(), + "page": fields.Integer(), + "page_size": fields.Integer(), }, ) user_list_model = api.model( -- GitLab