2024-10-27 21:42:45 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
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
|