mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 07:33:04 +08:00
7 lines
148 B
Ruby
7 lines
148 B
Ruby
module Api
|
|
module V1
|
|
class TeamSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :description, :space_taken
|
|
end
|
|
end
|
|
end
|