Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

External API authorization allow empty value for pagination params #6894

Merged
merged 2 commits into from
Oct 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion api/authorization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ components:
in: query
name: prefix
description: return items prefixed with this value
allowEmptyValue: true
schema:
type: string

PaginationAfter:
in: query
name: after
description: return items after this value
allowEmptyValue: true
schema:
type: string

Expand Down Expand Up @@ -353,11 +355,13 @@ paths:
- $ref: "#/components/parameters/PaginationAmount"
- in: query
name: id
allowEmptyValue: true
schema:
type: integer
format: int64
- in: query
name: email
allowEmptyValue: true
schema:
type: string
- in: query
Expand Down Expand Up @@ -1101,4 +1105,4 @@ paths:
content:
application/json:
schema:
$ref: "#/components/schemas/VersionConfig"
$ref: "#/components/schemas/VersionConfig"
Loading