mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
12 lines
253 B
Ruby
12 lines
253 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Sets
|
|
class EnterpriseFeeSet < ModelSet
|
|
def initialize(attributes = {})
|
|
super(EnterpriseFee, EnterpriseFee.all,
|
|
attributes,
|
|
proc { |attrs| attrs[:name].blank? })
|
|
end
|
|
end
|
|
end
|