Add consumer ID to ransack filter

This commit is contained in:
Sebastian Serth
2022-08-20 10:41:02 +02:00
parent 166aa3cc6f
commit 32413058d6

View File

@ -14,4 +14,8 @@ class Consumer < ApplicationRecord
def to_s
name
end
def self.ransackable_attributes(_auth_object = nil)
%w[id]
end
end