wedding-planner/app/controllers/groups_controller.rb

7 lines
181 B
Ruby

class GroupsController < ApplicationController
def index
roots = Group.where(parent_id: nil)
render jsonapi: roots, include: [children: [children: [:children]]]
end
end