Commit e078d515 authored by Stan Hu's avatar Stan Hu

Add CSP nonce to graphiql-rails JavaScript

parent 4d70537c
...@@ -84,7 +84,9 @@ gem 'rack-cors', '~> 1.0.0', require: 'rack/cors' ...@@ -84,7 +84,9 @@ gem 'rack-cors', '~> 1.0.0', require: 'rack/cors'
# GraphQL API # GraphQL API
gem 'graphql', '~> 1.9.11' gem 'graphql', '~> 1.9.11'
# TODO: remove app/views/graphiql/rails/editors/show.html.erb when https://github.com/rmosolgo/graphiql-rails/pull/71 will be released # NOTE: graphiql-rails v1.5+ doesn't work: https://gitlab.com/gitlab-org/gitlab-ce/issues/67293
# TODO: remove app/views/graphiql/rails/editors/show.html.erb when https://github.com/rmosolgo/graphiql-rails/pull/71 is released:
# https://gitlab.com/gitlab-org/gitlab-ce/issues/67263
gem 'graphiql-rails', '~> 1.4.10' gem 'graphiql-rails', '~> 1.4.10'
gem 'apollo_upload_server', '~> 2.0.0.beta3' gem 'apollo_upload_server', '~> 2.0.0.beta3'
gem 'graphql-docs', '~> 1.6.0', group: [:development, :test] gem 'graphql-docs', '~> 1.6.0', group: [:development, :test]
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<div id="graphiql-container"> <div id="graphiql-container">
Loading... Loading...
</div> </div>
<script> <%= javascript_tag nonce: true do -%>
var parameters = {}; var parameters = {};
<% if GraphiQL::Rails.config.query_params %> <% if GraphiQL::Rails.config.query_params %>
...@@ -94,6 +94,6 @@ ...@@ -94,6 +94,6 @@
}), }),
document.getElementById("graphiql-container") document.getElementById("graphiql-container")
); );
</script> <% end -%>
</body> </body>
</html> </html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment