diff --git a/app/models/consumer.rb b/app/models/consumer.rb index 691daeba..95868e5f 100644 --- a/app/models/consumer.rb +++ b/app/models/consumer.rb @@ -14,4 +14,8 @@ class Consumer < ApplicationRecord def to_s name end + + def self.ransackable_attributes(_auth_object = nil) + %w[id] + end end