Files
openfoodnetwork/app/models/enterprise_fee_set.rb

8 lines
190 B
Ruby

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