mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-12 03:50:22 +00:00
8 lines
182 B
Ruby
8 lines
182 B
Ruby
module Sets
|
|
class ColumnPreferenceSet < ModelSet
|
|
def initialize(collection, attributes = {})
|
|
super(ColumnPreference, collection, attributes, nil, nil )
|
|
end
|
|
end
|
|
end
|