0

我正在尝试从从社交网站 diaspora* 收到的电子邮件通知中删除内容。仅当我在侨民上的帖子有任何活动时才会收到电子邮件通知*。电子邮件通知应仅包含指向散居 * 帖子的链接,而不是内容。

文件 app/views/notifier/comment_on_post.markerb 包含以下代码:

<%= comment_message(@notification.comment) %>

文件 app/helpers/notifier_helper.rb 包含以下代码:

def comment_message(comment)
   I18n.t('notifier.comment_on_post.post_activity', link: post_comment_url(comment.post, comment))
end

en.yml 文件包含:

comment_on_post:
     post_activity: "Hey! There was some activity on your post. See it at %{link}."

我必须使用降价使 %{link} 在视图中可点击。像这样的东西: https ://github.com/diaspora/diaspora/blob/develop/app/views/notifier/also_commented.markerb

我怎样才能做到这一点?

4

1 回答 1

0

也许我误解了这个问题,但我认为你所需要的只是link_to帮手

<%= comment_message(@notification.comment) %>

应该

<%= link_to comment_message(@notification.comment) %>
于 2013-09-23T10:16:45.583 回答