DEV: Use short_date helper for email post template (#10063)

This commit is contained in:
Penar Musaraj 2020-06-17 11:29:37 -04:00 committed by GitHub
parent e29afa200a
commit 76b05ef8ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 9 deletions

View File

@ -174,14 +174,6 @@ class UserNotifications < ActionMailer::Base
)
end
def short_date(dt)
if dt.year == Time.now.year
I18n.l(dt, format: :short_no_year)
else
I18n.l(dt, format: :date_only)
end
end
def digest(user, opts = {})
build_summary_for(user)
min_date = opts[:since] || user.last_emailed_at || user.last_seen_at || 1.month.ago

View File

@ -20,7 +20,7 @@
<span class='user-title'><%= post.user.title %></span>
<% end %>
<br>
<span class='notification-date'><%= l post.created_at, format: :short_no_year %></span>
<span class='notification-date'><%= short_date(post.created_at) %></span>
</td>
</tr>
</table>