]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/notifier_helper.rb
Refactored the code to invoke the message body partial layout, as suggested in the PR
[rails.git] / app / helpers / notifier_helper.rb
index 4b2cd2a06d924689d354d886c56306425d870123..0510ae0a89280dc97d5bb3ef0c2eb2e21d54ea36 100644 (file)
@@ -2,4 +2,20 @@ module NotifierHelper
   def fp(text)
     format_paragraph(text, 72, 0)
   end
+
+  def link_to_user(display_name)
+    link_to(
+      display_name,
+      user_url(display_name, :host => SERVER_URL),
+      :target => "_blank",
+      :style => "text-decoration: none; color: #222; font-weight: bold"
+    )
+  end
+
+  def message_body(&block)
+    render(
+      partial: "message_body",
+      locals: { body: capture(&block) }
+    )
+  end
 end