Using double splat operator (#5859)
This commit is contained in:
committed by
Eugen Rochko
parent
42bcbd36b7
commit
b21db9bbde
@@ -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)
|
||||
|
@@ -5,7 +5,7 @@ class UserMailer < Devise::Mailer
|
||||
|
||||
helper :instance
|
||||
|
||||
def confirmation_instructions(user, token, _opts = {})
|
||||
def confirmation_instructions(user, token, **)
|
||||
@resource = user
|
||||
@token = token
|
||||
@instance = Rails.configuration.x.local_domain
|
||||
@@ -17,7 +17,7 @@ class UserMailer < Devise::Mailer
|
||||
end
|
||||
end
|
||||
|
||||
def reset_password_instructions(user, token, _opts = {})
|
||||
def reset_password_instructions(user, token, **)
|
||||
@resource = user
|
||||
@token = token
|
||||
@instance = Rails.configuration.x.local_domain
|
||||
@@ -29,7 +29,7 @@ class UserMailer < Devise::Mailer
|
||||
end
|
||||
end
|
||||
|
||||
def password_change(user, _opts = {})
|
||||
def password_change(user, **)
|
||||
@resource = user
|
||||
@instance = Rails.configuration.x.local_domain
|
||||
|
||||
|
Reference in New Issue
Block a user