don't show comment updated by if the edit occurred within 5 minutes

This commit is contained in:
Toks
2013-06-24 11:17:43 -04:00
parent 2497cb28ae
commit 7719cc2104

View File

@@ -9,7 +9,7 @@
<div class="body prose">
<%= format_text(comment.body) %>
<% if comment.updater_id.present? && (comment.updater_id != comment.creator_id || comment.created_at != comment.updated_at) %>
<% if comment.updated_at - comment.created_at > 5.minutes %>
<p class="info">Updated by <%= link_to_user comment.updater %> <%= time_ago_in_words_tagged(comment.updated_at) %></p>
<% end %>
</div>