DEV: Use short_date helper for email post template (#10063)
This commit is contained in:
parent
e29afa200a
commit
76b05ef8ad
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue