fix issued cert

This commit is contained in:
2025-09-22 10:42:13 -03:00
parent 6d352ab3a3
commit 18674d8831
5 changed files with 40 additions and 21 deletions

View File

@@ -72,8 +72,8 @@ def get_enrollment(id: str):
record = enrollment_layer.collection.get_items(
TransactKey(id)
+ SortKey('0')
+ SortKey('STARTED', rename_key='started_at', path_spec='started_at')
+ SortKey('COMPLETED', rename_key='completed_at', path_spec='completed_at')
# + SortKey('STARTED', rename_key='started_at', path_spec='started_at')
# + SortKey('COMPLETED', rename_key='completed_at', path_spec='completed_at')
+ SortKey('FAILED', rename_key='failed_at', path_spec='failed_at')
+ SortKey('CANCELED', rename_key='canceled')
+ SortKey('ARCHIVED', rename_key='archived_at', path_spec='archived_at')