fix enroll and reenroll relationship

This commit is contained in:
2025-10-14 18:11:24 -03:00
parent 466ff824dd
commit a7e5a0a528
20 changed files with 125 additions and 89 deletions

View File

@@ -14,7 +14,7 @@ enrollment_layer = DynamoDBPersistenceLayer(ENROLLMENT_TABLE, dynamodb_client)
def download(id: str):
params = {
'Bucket': BUCKET_NAME,
'Key': f'issuedcerts/{id}.pdf',
'Key': f'certs/{id}.pdf',
'ResponseContentDisposition': f'attachment; filename="{id}.pdf"',
}