]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/open_graph_helper.rb
Fix security policy for mapillary in iD
[rails.git] / app / helpers / open_graph_helper.rb
index cb72d7254cdf7c7db7aced287179b980fba23094..11cfe50306ee4d1e4fe1b08ea647735e6b565379 100644 (file)
@@ -2,11 +2,12 @@ module OpenGraphHelper
   def opengraph_tags(title = nil)
     tags = {
       "og:site_name" => t("layouts.project_name.title"),
-      "og:title" => [t("layouts.project_name.title"), title].compact.join(" | "),
+      "og:title" => [title, t("layouts.project_name.title")].compact.join(" | "),
       "og:type" => "website",
-      "og:image" => image_path("osm_logo_256.png", :host => SERVER_URL, :protocol => "http"),
-      "og:image:secure_url" => image_path("osm_logo_256.png", :host => SERVER_URL, :protocol => "https"),
-      "og:url" => url_for(:host => SERVER_URL)
+      "og:image" => image_url("osm_logo_256.png", :protocol => "http"),
+      "og:image:secure_url" => image_url("osm_logo_256.png", :protocol => "https"),
+      "og:url" => url_for(:only_path => false),
+      "og:description" => t("layouts.intro_text")
     }
 
     tags.map do |property, content|