Files
openfoodnetwork/app/models/enterprise_fee_set.rb
Rohan Mitchell ca1c116a5d Swap param order
2014-12-12 13:33:14 +11:00

8 lines
190 B
Ruby

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