Skip to content

Commit 9657ddd

Browse files
authored
Merge branch 'main' into feature/standalone-docker
2 parents 25941d9 + 8a0d7cb commit 9657ddd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

aries_cloudagent/protocols/issue_credential/v1_0/routes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,8 @@ async def credential_exchange_retrieve(request: web.BaseRequest):
382382

383383
@docs(
384384
tags=["issue-credential v1.0"],
385-
summary="Send holder a credential, automating entire flow",
385+
summary=("Create a credential record without "
386+
"sending (generally for use with Out-Of-Band)"),
386387
)
387388
@request_schema(V10CredentialCreateSchema())
388389
@response_schema(V10CredentialExchangeSchema(), 200, description="")

aries_cloudagent/protocols/issue_credential/v2_0/routes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,8 @@ async def credential_exchange_retrieve(request: web.BaseRequest):
521521

522522
@docs(
523523
tags=["issue-credential v2.0"],
524-
summary="Create credential from attribute values",
524+
summary=("Create a credential record without "
525+
"sending (generally for use with Out-Of-Band)"),
525526
)
526527
@request_schema(V20IssueCredSchemaCore())
527528
@response_schema(V20CredExRecordSchema(), 200, description="")

0 commit comments

Comments
 (0)