Using double splat operator (#5859)

This commit is contained in:
Yamagishi Kazutoshi
2017-12-06 19:41:57 +09:00
committed by Eugen Rochko
parent 42bcbd36b7
commit b21db9bbde
25 changed files with 32 additions and 32 deletions

View File

@ -63,7 +63,7 @@ class NotificationMailer < ApplicationMailer
end
end
def digest(recipient, opts = {})
def digest(recipient, **opts)
@me = recipient
@since = opts[:since] || @me.user.last_emailed_at || @me.user.current_sign_in_at
@notifications = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since)