Skip to content

Commit

Permalink
Merge pull request #802 from EBISPOT/fix-gwas-cors-issue
Browse files Browse the repository at this point in the history
Fix for pgatlas.com CORS issue for GWAS
  • Loading branch information
haideriqbal authored Nov 26, 2024
2 parents 6717f57 + 20b96ea commit efa0c68
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
httpResponse.addHeader("Access-Control-Allow-Origin", "*");
httpResponse.addHeader("Access-Control-Allow-Headers", "*");
httpResponse.addHeader("Access-Control-Allow-Methods", "GET");
httpResponse.addHeader("Access-Control-Allow-Credentials", "true");
}

chain.doFilter(request, response);
Expand Down

0 comments on commit efa0c68

Please sign in to comment.