mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-13 21:33:20 +01:00
Replace options hash with keyword arguments
This commit is contained in:
parent
7b831875b0
commit
81b73d5196
1 changed files with 4 additions and 4 deletions
|
@ -10,12 +10,12 @@ class Notification < ApplicationRecord
|
|||
define_cursor_paginator :cursored_for, :for
|
||||
define_cursor_paginator :cursored_for_type, :for_type
|
||||
|
||||
def for(recipient, options = {})
|
||||
where(options.merge!(recipient: recipient)).order(:created_at).reverse_order
|
||||
def for(recipient, **kwargs)
|
||||
where(kwargs.merge!(recipient: recipient)).order(:created_at).reverse_order
|
||||
end
|
||||
|
||||
def for_type(recipient, type, options = {})
|
||||
where(options.merge!(recipient: recipient)).where(type: type).order(:created_at).reverse_order
|
||||
def for_type(recipient, type, **kwargs)
|
||||
where(kwargs.merge!(recipient: recipient)).where(type: type).order(:created_at).reverse_order
|
||||
end
|
||||
|
||||
def notify(recipient, target)
|
||||
|
|
Loading…
Reference in a new issue