]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Merge branch 'master' into feature/add-communities-page
[rails.git] / app / controllers / site_controller.rb
index 1cb848ea6ef09685407b622c3e83d4131fdfdb1c..a73d1e2e50e74f9595605917440a60a5cf7ba4f5 100644 (file)
@@ -61,14 +61,7 @@ class SiteController < ApplicationController
       require_user
     end
 
-    if %w[potlatch potlatch2].include?(editor)
-      append_content_security_policy_directives(
-        :connect_src => %w[*],
-        :object_src => %w[*],
-        :plugin_types => %w[application/x-shockwave-flash],
-        :script_src => %w['unsafe-inline']
-      )
-    elsif %w[id].include?(editor)
+    if %w[id].include?(editor)
       append_content_security_policy_directives(
         :frame_src => %w[blob:]
       )
@@ -113,6 +106,11 @@ class SiteController < ApplicationController
     @locale = params[:about_locale] || I18n.locale
   end
 
+  def communities
+    OsmCommunityIndex::LocalChapter.add_to_i18n # this should be called on app init
+    @local_chapters = OsmCommunityIndex::LocalChapter.local_chapters
+  end
+
   def export; end
 
   def offline; end