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