mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
311 B
Ruby
15 lines
311 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PermittedAttributes
|
|
class Variant
|
|
def self.attributes
|
|
[
|
|
:id, :sku, :on_hand, :on_demand,
|
|
:cost_price, :price, :unit_value, :unit_description,
|
|
:display_name, :display_as,
|
|
:weight, :height, :width, :depth
|
|
]
|
|
end
|
|
end
|
|
end
|