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

fix: adjust cid filter limits #62

Merged
merged 2 commits into from
Sep 18, 2020
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
4 changes: 2 additions & 2 deletions ipfs-pinning-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ components:
default: 10

cid:
description: Return pin objects responsible for pinning the specified CID(s)
description: Return pin objects responsible for pinning the specified CID(s); be aware that using longer hash functions introduces further constraints on the number of CIDs that will fit under the limit of 2000 characters per URL in browser contexts
lidel marked this conversation as resolved.
Show resolved Hide resolved
name: cid
in: query
required: false
Expand All @@ -478,7 +478,7 @@ components:
type: string
uniqueItems: true
minItems: 1
maxItems: 1000
maxItems: 10
style: form # ?cid=Qm1,Qm2,bafy3
explode: false
example: ["Qm1","Qm2","bafy3"]
Expand Down