Files
openfoodnetwork/app/models/enterprise_fee_set.rb

8 lines
192 B
Ruby

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