Skip to content

Commit

Permalink
resolve rubocop warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
takahashim committed Apr 5, 2024
1 parent 3c16a54 commit b3653de
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions config/initializers/decidim.rb
Original file line number Diff line number Diff line change
Expand Up @@ -394,14 +394,14 @@
config.allow_open_redirects = Rails.application.secrets.decidim[:allow_open_redirects] if Rails.application.secrets.decidim[:allow_open_redirects].present?

config.content_security_policies_extra = {
"default-src" => '*',
"img-src" => '*',
"media-src" => '*',
"script-src" => '*',
"style-src" => '*',
"font-src" => '*',
"frame-src" => '*',
"connect-src" => '*',
"default-src" => "*",
"img-src" => "*",
"media-src" => "*",
"script-src" => "*",
"style-src" => "*",
"font-src" => "*",
"frame-src" => "*",
"connect-src" => "*"
}
end

Expand Down

0 comments on commit b3653de

Please sign in to comment.