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-11-13 08:57:20 +01:00
|
|
|
render json: Groups::SummaryQuery.new.call.as_json
|
2024-08-11 16:29:10 +02:00
|
|
|
end
|
|
|
|
end
|