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