From dcd0b4ef4fd3c4c64e980c7dd17ffeffe2a7d3f5 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Thu, 10 Oct 2024 20:01:47 +0200 Subject: [PATCH] refactor(api): remove limit and offsetID parameters from GET /trainings --- api/openapi.yaml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/api/openapi.yaml b/api/openapi.yaml index 868293b..0dc558f 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -22,23 +22,6 @@ paths: operationId: listTrainings tags: - Trainings - parameters: - - name: limit - in: query - description: Maximum number of trainings to return - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 10 - - name: offsetID - in: query - description: ID of the training to start from - required: false - schema: - type: integer - minimum: 1 responses: "200": $ref: "#/components/responses/ListTrainingsResponse"