Skip to content

Commit 145f6fb

Browse files
authored
Merge pull request #942 from CHKM001/fix/events-limit-max-200
fix: align OpenAPI events limit max with code constant (500 -> 200)
2 parents 9de5b01 + 40f6fc5 commit 145f6fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/src/routes/v1/stream.routes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ router.get('/:streamId', getStream);
9191
* type: integer
9292
* default: 50
9393
* minimum: 1
94-
* maximum: 500
95-
* description: "Number of events to return per page (default: 50, max: 500)"
94+
* maximum: 200
95+
* description: "Number of events to return per page (default: 50, max: 200)"
9696
* - in: query
9797
* name: offset
9898
* schema:

0 commit comments

Comments
 (0)