mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
228 B
Ruby
12 lines
228 B
Ruby
class Api::Admin::ShippingMethodSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :tag_list, :tags
|
|
|
|
def tag_list
|
|
object.tag_list.join(",")
|
|
end
|
|
|
|
def tags
|
|
object.tag_list.map{ |t| { text: t } }
|
|
end
|
|
end
|