Files
timeoverflow/app/models/concerns/ransackable.rb
2025-03-22 16:40:14 +01:00

14 lines
286 B
Ruby

module Ransackable
extend ActiveSupport::Concern
class_methods do
def ransackable_attributes(auth_object = nil)
authorizable_ransackable_attributes
end
def ransackable_associations(auth_object = nil)
authorizable_ransackable_associations
end
end
end