1
0
Fork 0

refactor(api): remove limit and offsetID parameters from GET /trainings

This commit is contained in:
Vojtěch Mareš 2024-10-10 20:01:47 +02:00
parent 05cde5057a
commit dcd0b4ef4f
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D

View file

@ -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"