Skip to content

Commit

Permalink
feat: advanced listing endpoint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux committed Apr 18, 2024
1 parent 5bda34e commit 114d6f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spid_cie_oidc/authority/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ def advanced_entity_listing(request):
for descendant in desecendants:
entity = {
descendant.sub : {
"iat" : int(descendant.modified.timestamp())
"iat" : int(descendant.modified.timestamp()),
"subordinate_statement": descendant.entity_statement_as_jws()
}
}
entities_list.append(entity)
Expand Down

0 comments on commit 114d6f9

Please sign in to comment.