wedding-planner/app/controllers/groups_controller.rb

6 lines
163 B
Ruby
Raw Normal View History

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