Files
openfoodnetwork/app/services/sets/enterprise_fee_set.rb
2021-01-14 09:41:07 +00:00

12 lines
253 B
Ruby

# frozen_string_literal: true
module Sets
class EnterpriseFeeSet < ModelSet
def initialize(attributes = {})
super(EnterpriseFee, EnterpriseFee.all,
attributes,
proc { |attrs| attrs[:name].blank? })
end
end
end