Skip to content

Commit e43cc1f

Browse files
committed
Merge branch 'develop' into fix/SSISDK-85_credential_subject_issuance
2 parents 195bde4 + 5c41a38 commit e43cc1f

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

packages/issuer/lib/VcIssuer.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import { LOG } from './index'
5454
const shortUUID = ShortUUID()
5555

5656
export class VcIssuer {
57-
private readonly _issuerMetadata: CredentialIssuerMetadataOptsV1_0_15
57+
private _issuerMetadata: CredentialIssuerMetadataOptsV1_0_15 // TODO SSISDK-87 create proper solution to update issuer metadata
5858
private readonly _authorizationServerMetadata: AuthorizationServerMetadata
5959
private readonly _defaultCredentialOfferBaseUri?: string
6060
private readonly _credentialSignerCallback?: CredentialSignerCallback
@@ -863,6 +863,11 @@ export class VcIssuer {
863863
return this._issuerMetadata
864864
}
865865

866+
// TODO SSISDK-87 create proper solution to update issuer metadata
867+
public set issuerMetadata(value: CredentialIssuerMetadataOptsV1_0_15) {
868+
this._issuerMetadata = value;
869+
}
870+
866871
public get authorizationServerMetadata() {
867872
return this._authorizationServerMetadata
868873
}

0 commit comments

Comments
 (0)