mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
192 B
Ruby
8 lines
192 B
Ruby
class EnterpriseFeeSet < ModelSet
|
|
def initialize(attributes = {})
|
|
super(EnterpriseFee, EnterpriseFee.all,
|
|
attributes,
|
|
proc { |attrs| attrs[:name].blank? })
|
|
end
|
|
end
|