7 lines
181 B
Ruby
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
|