Merge branch 'dpp' into join-to-manuals

This commit is contained in:
Cayo Puigdefabregas 2023-07-13 17:18:35 +02:00
commit 79cb5279e9
1 changed files with 5 additions and 0 deletions

View File

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