Skip to content

Commit

Permalink
fix(expiry): set expiry to max 1 year (#173)
Browse files Browse the repository at this point in the history
Reviewed-By: Evelyn Gurschler <evelyn.gurschler@bmw.de>
  • Loading branch information
Phil91 authored Jun 13, 2024
1 parent 1eceb1f commit 46d23e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public async Task<Guid> CreateFrameworkCredential(CreateFrameworkCredentialReque
externalTypeId,
$"Framework Credential for UseCase {externalTypeId}",
DateTimeOffset.UtcNow,
result.Expiry,
GetExpiryDate(result.Expiry),
_settings.IssuerDid,
new FrameworkCredentialSubject(
holderDid,
Expand Down

0 comments on commit 46d23e8

Please sign in to comment.