diff options
author | 2025-01-26 00:51:28 -0800 | |
---|---|---|
committer | 2025-01-26 09:51:28 +0100 | |
commit | 3ab2d8621b9d6bca1739eec93fd8ce885185a5bc (patch) | |
tree | 9daf5dd085f11fcdf387fef19df0ed37893d4e45 /docs/api | |
parent | [bugfix] Rename domain perm sub migration to unique date (#3679) (diff) | |
download | gotosocial-3ab2d8621b9d6bca1739eec93fd8ce885185a5bc.tar.xz |
[docs] Swagger: fix filter context params by moving enum list from the list type to the item type (#3684)
Reported by `@modulus:matrix.org`
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/swagger.yaml | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index 5165f8c9e..d95825b6e 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -7954,14 +7954,14 @@ paths: The contexts in which the filter should be applied. Sample: home, public - enum: - - home - - notifications - - public - - thread - - account in: formData items: + enum: + - home + - notifications + - public + - thread + - account type: string minItems: 1 name: context[] @@ -8108,14 +8108,14 @@ paths: The contexts in which the filter should be applied. Sample: home, public - enum: - - home - - notifications - - public - - thread - - account in: formData items: + enum: + - home + - notifications + - public + - thread + - account type: string minItems: 1 name: context[] @@ -11835,14 +11835,14 @@ paths: The contexts in which the filter should be applied. Sample: home, public - enum: - - home - - notifications - - public - - thread - - account in: formData items: + enum: + - home + - notifications + - public + - thread + - account type: string minItems: 1 name: context[] @@ -12029,14 +12029,14 @@ paths: The contexts in which the filter should be applied. Sample: home, public - enum: - - home - - notifications - - public - - thread - - account in: formData items: + enum: + - home + - notifications + - public + - thread + - account type: string minItems: 1 name: context[] |