]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Remove support for soon discontinued josm remote https endpoint
[rails.git] / app / controllers / application_controller.rb
index 5905b3759276051093a30a1923cb5bb50d032286..4a803af723326f287ae01a952ac9d0f11d0b75da 100644 (file)
@@ -413,7 +413,9 @@ class ApplicationController < ActionController::Base
 
   def map_layout
     append_content_security_policy_directives(
+      :child_src => %w[127.0.0.1:8111],
       :connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org valhalla.mapzen.com],
+      :form_action => %w[render.openstreetmap.org],
       :script_src => %w[graphhopper.com open.mapquestapi.com],
       :img_src => %w[developer.mapquest.com]
     )
@@ -427,6 +429,10 @@ class ApplicationController < ActionController::Base
     request.xhr? ? "xhr" : "map"
   end
 
+  def allow_thirdparty_images
+    append_content_security_policy_directives(:img_src => %w[*])
+  end
+
   def preferred_editor
     editor = if params[:editor]
                params[:editor]