Skip to content

Commit

Permalink
Disable statuslist revocation 2021 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
reinkrul committed Oct 7, 2024
1 parent a2062f0 commit 2d08a7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/src/admin/IssueCredential.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ export default {
credentialToIssue['@context'] = credentialToIssue['@context'][0]
credentialToIssue['type'] = credentialToIssue['type'].find(t => t !== "VerifiableCredential")
credentialToIssue['expirationDate'] = new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * this.daysValid).toISOString()
credentialToIssue.withStatusList2021Revocation = true
// disable statusListRevocation2021 for now, causes issues on MS SQL Server
//credentialToIssue.withStatusList2021Revocation = true
this.fetchError = undefined
this.$api.post('api/proxy/internal/vcr/v2/issuer/vc', credentialToIssue)
.then(issuedCredential => {
Expand Down

0 comments on commit 2d08a7b

Please sign in to comment.