Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #607 from sudeshrshetty/0.1.7
Browse files Browse the repository at this point in the history
fix: WACI issuance - credential manifest attachment
  • Loading branch information
sudeshrshetty authored Feb 9, 2022
2 parents 5cdc30d + 4f639df commit 6787071
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/restapi/issuer/operation/operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -1968,7 +1968,11 @@ func prepareOfferCredentialMessage(manifest *cm.CredentialManifest, fulfillment
ID: manifestAttachID,
MediaType: offerCredentialAttachMediaType,
Data: decorator.AttachmentData{
JSON: manifest,
JSON: struct {
Manifest *cm.CredentialManifest `json:"credential_manifest,omitempty"`
}{
Manifest: manifest,
},
},
},
{
Expand Down

0 comments on commit 6787071

Please sign in to comment.