mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
171 B
Ruby
8 lines
171 B
Ruby
class Api::Admin::CalculatorSerializer < ActiveModel::Serializer
|
|
attributes :name, :description
|
|
|
|
delegate :name, to: :object
|
|
|
|
delegate :description, to: :object
|
|
end
|