mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
7 lines
115 B
Ruby
7 lines
115 B
Ruby
module SerializerHelper
|
|
def ids_to_objs(ids)
|
|
return [] if ids.blank?
|
|
ids.map { |id| {id: id} }
|
|
end
|
|
end
|