wedding-planner/app/controllers/groups_controller.rb

7 lines
181 B
Ruby
Raw Normal View History

2024-08-11 16:29:10 +02:00
class GroupsController < ApplicationController
def index
2024-08-11 18:56:38 +02:00
roots = Group.where(parent_id: nil)
render jsonapi: roots, include: [children: [children: [:children]]]
2024-08-11 16:29:10 +02:00
end
end