Fixes ransack upgrade to 4.0

This commit is contained in:
Hugo Peixoto 2023-04-19 22:52:31 +01:00
parent e178f94ff7
commit f3a1def396
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@ class Member < ApplicationRecord
has_many :notifications
has_paper_trail
def self.ransackable_attributes(auth_object = nil)
%w[display_name legal_name email identification_number]
end
def cancelled_on
expires_on + 90.days
end