Skip to content

Commit

Permalink
fix: incorrect plugin metadata passed to Report assembler
Browse files Browse the repository at this point in the history
Resolves: #1127.
  • Loading branch information
oesteban authored Mar 6, 2024
1 parent fef7289 commit 4352183
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions mriqc/reports/individual.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,12 @@ def _single_report(in_file):
}
},
plugin_meta={
"filename": in_file.name,
"dataset": config.execution.dsname,
"access_token": config.execution.webapi_token,
"endpoint": f"{config.execution.webapi_url}/rating",
"rating-widget": {
"filename": in_file.name,
"dataset": config.execution.dsname,
"access_token": config.execution.webapi_token,
"endpoint": f"{config.execution.webapi_url}/rating",
},
},
**entities,
)
Expand Down

0 comments on commit 4352183

Please sign in to comment.