Skip to content

Commit

Permalink
remove full stop
Browse files Browse the repository at this point in the history
  • Loading branch information
cl0ete committed Oct 25, 2024
1 parent 081d15f commit 3196d29
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/routes/wallet/dids.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async def create_did(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
):
"""
Create Local DID.
Create Local DID
---
This endpoint allows you to create a new DID in the wallet.
Expand Down Expand Up @@ -60,7 +60,7 @@ async def list_dids(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> List[DID]:
"""
Retrieve list of DIDs.
Retrieve list of DIDs
---
This endpoint allows you to retrieve a list of DIDs in the wallet.
Expand Down Expand Up @@ -90,7 +90,7 @@ async def get_public_did(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> DID:
"""
Fetch the current public DID.
Fetch the current public DID
---
This endpoint allows you to fetch the current public DID.
Expand Down Expand Up @@ -121,7 +121,7 @@ async def set_public_did(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> DID:
"""
Set the current public DID.
Set the current public DID
---
This endpoint allows you to set the current public DID.
Expand Down Expand Up @@ -152,7 +152,7 @@ async def rotate_keypair(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> None:
"""
Rotate key pair for DID.
Rotate key pair for DID
---
This endpoint allows you to rotate the key pair for a DID.
Expand Down Expand Up @@ -183,7 +183,7 @@ async def get_did_endpoint(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> DIDEndpoint:
"""
Get DID endpoint.
Get DID endpoint
---
This endpoint allows you to fetch the endpoint for a DID.
Expand Down Expand Up @@ -216,7 +216,7 @@ async def set_did_endpoint(
auth: AcaPyAuth = Depends(acapy_auth_from_header),
) -> None:
"""
Update Endpoint in wallet and on ledger if posted to it.
Update Endpoint in wallet and on ledger if posted to it
---
This endpoint allows you to update the endpoint for a DID.
Expand Down

0 comments on commit 3196d29

Please sign in to comment.