2018-08-07 21:19:24 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-07 20:19:49 +08:00
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
class InventorySerializer < ActiveModel::Serializer
|
2018-08-10 22:59:06 +08:00
|
|
|
type :inventories
|
2018-08-07 20:19:49 +08:00
|
|
|
attributes :id, :name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|