📅  最后修改于: 2022-03-11 15:04:46.700000             🧑  作者: Mango
class ProjectGroupSerializer < ActiveModel::Serializer
attributes :id, :name, :description, :projects
def projects
object.projects.map do |project|
::ProjectSerializer.new(project).attributes
end
end
end