Skip to content

Commit

Permalink
Merge pull request #18890 from mvdbeek/allow_cors_display_applications
Browse files Browse the repository at this point in the history
[24.1] Allow cors in biom and q2view display applications
  • Loading branch information
bgruening authored Sep 25, 2024
2 parents c80ce1d + 58e6011 commit d914cac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<display id="biom_simple" version="1.0.0" name="view biom at">
<dynamic_links from_data_table="biom_simple_display" skip_startswith="#" id="value" name="name">
<url>${ url % { 'biom_file_url_qp': $biom_file.qp } }</url>
<param type="data" name="biom_file" url="galaxy_${DATASET_HASH}.biom" />
<param type="data" name="biom_file" url="galaxy_${DATASET_HASH}.biom" allow_cors="true" />
</dynamic_links>
</display>
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<display id="q2view" version="1.0.0" name="view at">
<dynamic_links from_data_table="q2view_display" skip_startswith="#" id="value" name="name">
<url>${ url % { 'q2view_file_url_qp': $q2view_file.qp } }</url>
<param type="data" name="q2view_file" url="galaxy_${DATASET_HASH}.${dataset.ext}" />
<param type="data" name="q2view_file" url="galaxy_${DATASET_HASH}.${dataset.ext}" allow_cors="true"/>
</dynamic_links>
</display>

0 comments on commit d914cac

Please sign in to comment.