diff options
author | 2023-03-03 14:01:11 +0100 | |
---|---|---|
committer | 2023-03-03 14:01:11 +0100 | |
commit | 88eefd0aeb87888628e215ee81ae588625af5f35 (patch) | |
tree | a732d25cc4d0cbdb479ebea482a7c725a486a080 /docs/api | |
parent | [bugfix] Fix unpinning statuses not working (#1582) (diff) | |
download | gotosocial-88eefd0aeb87888628e215ee81ae588625af5f35.tar.xz |
[bugfix] Clamp admin report limit <1 to 100 (#1583)
* [bugfix] Clamp report limit <1 to 100
* add + update tests
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/swagger.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index 783e1147e..e9719f43e 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -3763,7 +3763,7 @@ paths: name: min_id type: string - default: 20 - description: Number of reports to return. If less than 1, will be clamped to 1. If more than 100, will be clamped to 100. + description: Number of reports to return. If more than 100 or less than 1, will be clamped to 100. in: query name: limit type: integer |