mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
8 lines
165 B
Ruby
8 lines
165 B
Ruby
class Api::Admin::ShippingMethodSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :tags
|
|
|
|
def tags
|
|
object.tag_list.map{ |t| { text: t } }
|
|
end
|
|
end
|