add url in credentialStatus for key dids
This commit is contained in:
parent
1401148247
commit
e81837bd4e
|
@ -699,6 +699,10 @@ class VerificableCredential(models.Model):
|
||||||
|
|
||||||
org = Organization.objects.get(main=True)
|
org = Organization.objects.get(main=True)
|
||||||
|
|
||||||
|
credential_status_id = 'https://revocation.not.supported/'
|
||||||
|
if self.issuer_did.type == DID.Types.WEB:
|
||||||
|
credential_status_id = self.issuer_did.did
|
||||||
|
|
||||||
context = {
|
context = {
|
||||||
'id_credential': str(self.id),
|
'id_credential': str(self.id),
|
||||||
'vc_id': url_id,
|
'vc_id': url_id,
|
||||||
|
@ -709,6 +713,7 @@ class VerificableCredential(models.Model):
|
||||||
'lastName': self.user.last_name or "",
|
'lastName': self.user.last_name or "",
|
||||||
'email': self.user.email,
|
'email': self.user.email,
|
||||||
'organisation': org.name or '',
|
'organisation': org.name or '',
|
||||||
|
'credential_status_id': credential_status_id,
|
||||||
}
|
}
|
||||||
context.update(d)
|
context.update(d)
|
||||||
return context
|
return context
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
"evidenceAssessment": "{{ evidenceAssessment }}"
|
"evidenceAssessment": "{{ evidenceAssessment }}"
|
||||||
},
|
},
|
||||||
"credentialStatus": {
|
"credentialStatus": {
|
||||||
"id": "{{ issuer_did }}",
|
"id": "{{ credential_status_id}}",
|
||||||
"type": "RevocationBitmap2022",
|
"type": "RevocationBitmap2022",
|
||||||
"revocationBitmapIndex": "{{ id_credential }}"
|
"revocationBitmapIndex": "{{ id_credential }}"
|
||||||
},
|
},
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
"email": "{{ email }}"
|
"email": "{{ email }}"
|
||||||
},
|
},
|
||||||
"credentialStatus": {
|
"credentialStatus": {
|
||||||
"id": "{{ issuer_did }}",
|
"id": "{{ credential_status_id}}",
|
||||||
"type": "RevocationBitmap2022",
|
"type": "RevocationBitmap2022",
|
||||||
"revocationBitmapIndex": "{{ id_credential }}"
|
"revocationBitmapIndex": "{{ id_credential }}"
|
||||||
},
|
},
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
"certificationDate": "{{ certificationDate }}"
|
"certificationDate": "{{ certificationDate }}"
|
||||||
},
|
},
|
||||||
"credentialStatus": {
|
"credentialStatus": {
|
||||||
"id": "{{ issuer_did }}",
|
"id": "{{ credential_status_id}}",
|
||||||
"type": "RevocationBitmap2022",
|
"type": "RevocationBitmap2022",
|
||||||
"revocationBitmapIndex": "{{ id_credential }}"
|
"revocationBitmapIndex": "{{ id_credential }}"
|
||||||
},
|
},
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
"assessmentDate": "{{ assessmentDate }}"
|
"assessmentDate": "{{ assessmentDate }}"
|
||||||
},
|
},
|
||||||
"credentialStatus": {
|
"credentialStatus": {
|
||||||
"id": "{{ issuer_did }}",
|
"id": "{{ credential_status_id}}",
|
||||||
"type": "RevocationBitmap2022",
|
"type": "RevocationBitmap2022",
|
||||||
"revocationBitmapIndex": "{{ id_credential }}"
|
"revocationBitmapIndex": "{{ id_credential }}"
|
||||||
},
|
},
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
"affiliatedUntil": "{{ affiliatedUntil }}"
|
"affiliatedUntil": "{{ affiliatedUntil }}"
|
||||||
},
|
},
|
||||||
"credentialStatus": {
|
"credentialStatus": {
|
||||||
"id": "{{ issuer_did }}",
|
"id": "{{ credential_status_id}}",
|
||||||
"type": "RevocationBitmap2022",
|
"type": "RevocationBitmap2022",
|
||||||
"revocationBitmapIndex": "{{ id_credential }}"
|
"revocationBitmapIndex": "{{ id_credential }}"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue