We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2062f0 commit 2d08a7bCopy full SHA for 2d08a7b
web/src/admin/IssueCredential.vue
@@ -143,7 +143,8 @@ export default {
143
credentialToIssue['@context'] = credentialToIssue['@context'][0]
144
credentialToIssue['type'] = credentialToIssue['type'].find(t => t !== "VerifiableCredential")
145
credentialToIssue['expirationDate'] = new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * this.daysValid).toISOString()
146
- credentialToIssue.withStatusList2021Revocation = true
+ // disable statusListRevocation2021 for now, causes issues on MS SQL Server
147
+ //credentialToIssue.withStatusList2021Revocation = true
148
this.fetchError = undefined
149
this.$api.post('api/proxy/internal/vcr/v2/issuer/vc', credentialToIssue)
150
.then(issuedCredential => {
0 commit comments