add chid of components

This commit is contained in:
Cayo Puigdefabregas 2023-07-11 16:39:04 +02:00
parent 472d742db2
commit fdb4d90ab4
1 changed files with 5 additions and 0 deletions

View File

@ -158,10 +158,12 @@ class DidView(View):
return before_dpp return before_dpp
def get_result(self): def get_result(self):
components = []
data = { data = {
'document': {}, 'document': {},
'dpp': self.id_dpp, 'dpp': self.id_dpp,
'algorithm': "sha3_256", 'algorithm': "sha3_256",
'components': components,
} }
result = {'data': data} result = {'data': data}
@ -174,6 +176,9 @@ class DidView(View):
did=last_dpp.key, host=app.config.get('HOST') did=last_dpp.key, host=app.config.get('HOST')
) )
data['url_last'] = url_last data['url_last'] = url_last
for c in self.dpp.snapshot.components:
components.append({c.type: c.chid})
return result return result
dpps = [] dpps = []