wedding-planner/app/controllers/groups_controller.rb

9 lines
219 B
Ruby

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