Skip to content

Commit

Permalink
🎨 Rearrange query params
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Dec 2, 2024
1 parent ef8ba40 commit e3711b9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/routes/wallet/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ async def get_credential_revocation_status(
summary="Fetch a list of W3C credentials from the wallet",
)
async def list_w3c_credentials(
schema_ids: Optional[List[str]] = None,
issuer_did: Optional[str] = None,
limit: Optional[int] = None,
issuer_did: Optional[str] = None,
schema_ids: Optional[List[str]] = None,
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> VCRecordList:
"""
Expand All @@ -251,12 +251,12 @@ async def list_w3c_credentials(
Optional Parameters:
---
schema_ids: List[str]
Schema identifiers to match
issuer_did: str
Credential issuer did to match
limit: int
Maximum number of results to return
issuer_did: str
Credential issuer did to match
schema_ids: List[str]
Schema identifiers to match
Returns:
---
Expand Down

0 comments on commit e3711b9

Please sign in to comment.