feat(reports): include workspace thumbnail in pdf exports
This commit is contained in:
@@ -418,7 +418,11 @@ def _scope_payload(filters: ReportFilters) -> dict:
|
||||
}
|
||||
|
||||
return {
|
||||
"workspace": {"id": str(filters.workspace.id), "name": filters.workspace.name},
|
||||
"workspace": {
|
||||
"id": str(filters.workspace.id),
|
||||
"name": filters.workspace.name,
|
||||
"thumbnail_path": filters.workspace.thumbnail.path if getattr(filters.workspace, "thumbnail", None) else None,
|
||||
},
|
||||
"period": filters.period,
|
||||
"from_date": filters.from_date.isoformat(),
|
||||
"to_date": filters.to_date.isoformat(),
|
||||
|
||||
Reference in New Issue
Block a user