Files
openfoodnetwork/app/models/enterprise_fee_set.rb
2012-11-21 09:47:51 +11:00

8 lines
199 B
Ruby

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