Manuel Bustillo
cc45b4c16e
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 1m35s
6 lines
163 B
Ruby
6 lines
163 B
Ruby
class GroupsController < ApplicationController
|
|
def index
|
|
render jsonapi: Group.where(parent_id: nil), include: [children: [children: [:children]]]
|
|
end
|
|
end
|